File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ if NOT "%1" == "/?" goto start
66echo " :-----------------------------------------------------------------------"
77echo " :- Syntax: BUILD [-r] [fat32|fat16] [msc|wc|tc|tcpp|bc] [86|186|386] "
88echo " :- [debug] [lfnapi] [/L #] [/D value] [list] [upx] [win] "
9- echo " :- [com] [com# #] "
9+ echo " :- [com] [com# #] [printf] "
1010echo " :- option case is significant !! "
1111echo " :- Note: Open Watcom (wc) is the preferred compiler "
1212echo " :- com does debug output on COM2, whereas com# 0 for COM1 ... "
@@ -52,6 +52,9 @@ if "%1" == "x86" goto setCPU
5252if " %1 " == " upx" set XUPX = upx --8086 --best
5353
5454if " %1 " == " debug" set ALLCFLAGS = %ALLCFLAGS% -DDEBUG
55+ if " %1 " == " print" set ALLCFLAGS = %ALLCFLAGS% -DDEBUG_NEED_PRINTF
56+ if " %1 " == " printf" set ALLCFLAGS = %ALLCFLAGS% -DDEBUG_NEED_PRINTF
57+
5558if " %1 " == " lfn" set ALLCFLAGS = %ALLCFLAGS% -DWITHLFNAPI
5659if " %1 " == " lfnapi" set ALLCFLAGS = %ALLCFLAGS% -DWITHLFNAPI
5760
You can’t perform that action at this time.
0 commit comments