From d311d3a57f2d2fa80b39af346edd5026e966c24b Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Wed, 2 Jun 2004 20:37:46 +0000 Subject: [PATCH] Keep zero-initialized varaibles in the .data section. svn path=/trunk/; revision=9595 --- freeldr/freeldr/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/freeldr/freeldr/Makefile b/freeldr/freeldr/Makefile index ae7711c4317..7fb88ab8c70 100644 --- a/freeldr/freeldr/Makefile +++ b/freeldr/freeldr/Makefile @@ -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 #############################################