Keep zero-initialized varaibles in the .data section.
authorEric Kohl <eric.kohl@reactos.org>
Wed, 2 Jun 2004 20:37:46 +0000 (20:37 +0000)
committerEric Kohl <eric.kohl@reactos.org>
Wed, 2 Jun 2004 20:37:46 +0000 (20:37 +0000)
svn path=/trunk/; revision=9595

freeldr/freeldr/Makefile

index ae7711c..7fb88ab 100644 (file)
@@ -132,7 +132,8 @@ else
 #############################################
 # COMPILER COMMAND LINE OPTIONS
 #
-COMPILER_OPTIONS = -Wall -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-inline -O1 -MD
+COMPILER_OPTIONS = -Wall -nostdlib -nostdinc -ffreestanding -fno-builtin -fno-inline \
+                   -fno-zero-initialized-in-bss -O1 -MD
 # FreeLoader does not use any of the standard libraries, includes, or built-in functions
 
 #############################################