aboutsummaryrefslogtreecommitdiff
path: root/Makefile.main
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.main')
-rw-r--r--Makefile.main6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.main b/Makefile.main
index 884c0c2..7810058 100644
--- a/Makefile.main
+++ b/Makefile.main
@@ -45,10 +45,10 @@ endif
CPPFLAGS += -D__SKIBOOT__ -nostdinc
CPPFLAGS += -isystem $(shell $(CC) -print-file-name=include)
CPPFLAGS += -DBITS_PER_LONG=64 -m64 -DHAVE_BIG_ENDIAN
-# Ideally we want -ffreestanding and remove our copy of stdint.h
+# We might want to remove our copy of stdint.h
# but that means uint64_t becomes an ulong instead of an ullong
-# causing all our printf's to warn ... so leave that alone for now
-#CPPFLAGS += -ffreestanding
+# causing all our printf's to warn
+CPPFLAGS += -ffreestanding
CFLAGS := -fno-strict-aliasing -fno-stack-protector -pie
CFLAGS += $(CWARNS) $(OPTS) $(DBG)