pike.git
/
NT
/
tools
/
rntcc
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/NT/tools/rntcc:87:
case "share": share=1; ldopts=({"SYSTEM","nt_dll","initinstance","terminstance"})+ldopts; cflags+=({"-bd"}); break; case "oper_pre": operation="preprocess"; break; case "oper_comp": operation="compile"; break; case "debug": cflags+=({"-d2"});
-
ldopts+=({"DEBUG","
WATCOM
","
ALL
"});
+
//
ldopts+=({"DEBUG","CODEVIEW","ALL"});
+
ldopts+=({"DEBUG","
CODEVIEW
","
OPTION
"
,"CVPACK"
});
debug=1; break; case "optimize": if(!option[1]) option[1]=1; switch(optimize=(int)option[1]) { case 0: optimize=0; break; case 1: cflags+=({"-ox"}); break; case 2..: cflags+=({"-otexan"}); break;
pike.git/NT/tools/rntcc:159:
default: sources+=({tmp}); } } if(output) rm(output); string errorfile="TMP"+getpid()+".err"; rm(errorfile);
-
cflags+=({"-bm","-zq","-
hw
","-sg"});
+
cflags+=({"-bm","-zq","-
hc
","-sg"});
switch(operation) { default: werror("Unknown operation "+operation+".\n"); exit(1); case "compile": compile(sources,output,errorfile,cflags); break;