Add undocumented command-line option to enable partial C99 support.
authorChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 01:13:58 +0000 (18:13 -0700)
committerChris Hanson <org/chris-hanson/cph>
Mon, 27 Jun 2011 01:13:58 +0000 (18:13 -0700)
src/microcode/ntutl/makefile.wcc

index 6247fdea0acd56cf250e90935f8616cefc058b24..fd65822b5d13e65333172ace4913c1209ce242a8 100644 (file)
@@ -55,6 +55,7 @@ AS = wasm
 # /ox          enable various optimizations [OPTIMIZE]
 # /s           remove stack overflow checks
 # /w1          set warning-message level
+# /za99                undocumented option to enable partial C99 support
 # /zc          place literal strings in code segment
 # /ze          enable language extensions (default)
 # /zp4         use 4-byte alignment (required for MS compatibility)
@@ -62,11 +63,12 @@ AS = wasm
 #
 # /DMIT_SCHEME required to specialize some code
 # /DGUI                configure a console window
+# /DHAVE_CONFIG_H we have config.h
 # omitted: /DNO_CONST /Di386
 #
 # For debugging, uncomment next line and comment one following.
 #UTIL_CFLAGS = /6r /d2 /ei /op /s /w1 /zc /zp4 /zq
-UTIL_CFLAGS = /6r /d1+ /ei /oe /op /ox /s /w1 /zc /zp4 /zq
+UTIL_CFLAGS = /6r /d1+ /ei /oe /op /ox /s /w1 /za99 /zc /zp4 /zq
 CFLAGS = $(UTIL_CFLAGS) /bm /DMIT_SCHEME /DGUI /DHAVE_CONFIG_H /i=.
 
 # Linker options.