Skip to content
Snippets Groups Projects
Commit acdba13b authored by Fredrik Hübinette (Hubbe)'s avatar Fredrik Hübinette (Hubbe)
Browse files

now generates CODEVIEW debug info

Rev: NT/tools/rntcc:1.14
parent 3a0fdab9
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,8 @@ int main(int argc, string *argv) ...@@ -94,7 +94,8 @@ int main(int argc, string *argv)
case "oper_comp": operation="compile"; break; case "oper_comp": operation="compile"; break;
case "debug": case "debug":
cflags+=({"-d2"}); cflags+=({"-d2"});
ldopts+=({"DEBUG","WATCOM","ALL"}); // ldopts+=({"DEBUG","CODEVIEW","ALL"});
ldopts+=({"DEBUG","CODEVIEW","OPTION","CVPACK"});
debug=1; debug=1;
break; break;
...@@ -166,7 +167,7 @@ int main(int argc, string *argv) ...@@ -166,7 +167,7 @@ int main(int argc, string *argv)
string errorfile="TMP"+getpid()+".err"; string errorfile="TMP"+getpid()+".err";
rm(errorfile); rm(errorfile);
cflags+=({"-bm","-zq","-hw","-sg"}); cflags+=({"-bm","-zq","-hc","-sg"});
switch(operation) switch(operation)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment