diff options
-rw-r--r-- | Makefile.config | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile.config b/Makefile.config index 5125fb503..cb2d8e68a 100644 --- a/Makefile.config +++ b/Makefile.config @@ -13,6 +13,9 @@ MANDIR=/usr/local/man/man1 MANEXT=1 ### Do #! scripts work on your system? +### Beware: on some systems (e.g. SunOS 4), this will work only if +### the string "#!$(BINDIR)/cslrun" is less than 32 characters long. +### In doubt, set SHARPBANGSCRIPTS to false. SHARPBANGSCRIPTS=true #SHARPBANGSCRIPTS=false @@ -22,7 +25,7 @@ SHARPBANGSCRIPTS=true ### Performance of the bytecode interpreter is *much* improved ### if Gnu CC version 2 is used. BYTECC=gcc -# BYTECC=cc +#BYTECC=cc ### Additional compile-time options for $(BYTECC). # If using gcc on Intel 386 or Motorola 68k: @@ -86,8 +89,12 @@ NATIVECC=cc ### Additional compile-time options for $(NATIVECC). #NATIVECCCOMPOPTS= -# For the Alpha: +# For cc on the Alpha: NATIVECCCOMPOPTS=-std1 +# For cc on the Mips: +#NATIVECCCOMPOPTS=-std +# For gcc if superstitious: +#NATIVECCCOMPOPTS=-Wall ### Flags for the assembler # For the Alpha or the Mips: @@ -96,5 +103,3 @@ ASFLAGS=-O2 #ASFLAGS=-P -DSYS_$(SYSTEM) # Otherwise: #ASFLAGS= - - |