summaryrefslogtreecommitdiff
path: root/firmware
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-08-20 14:00:42 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-08-20 14:00:42 +0000
commitef3a3e70930658d499cf200d198e6a86fd183bc0 (patch)
tree8ebeb30712d756445c80f8141426dc04b6ef7cb3 /firmware
parent3c10db57c6963f49a9238b0e7e9db259e72cd684 (diff)
downloadrockbox-ef3a3e70930658d499cf200d198e6a86fd183bc0.tar.gz
rockbox-ef3a3e70930658d499cf200d198e6a86fd183bc0.zip
use the gcc option -ffreestanding: (quote from the gcc man page)
"A freestanding environment is one in which the standard library may not exist, and program startup may not necessarily be at "main". The most obvious example is an OS kernel." git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1818 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware')
-rw-r--r--firmware/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/Makefile b/firmware/Makefile
index 03576d19fd..7d09809713 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -25,12 +25,12 @@ TARGET = -DARCHOS_PLAYER=1
25# store output files in this directory: 25# store output files in this directory:
26OBJDIR = . 26OBJDIR = .
27 27
28CFLAGS = -W -Wall -O -m1 -nostdlib -Wstrict-prototypes $(INCLUDES) $(TARGET) $(EXTRA_DEFINES) 28CFLAGS = -W -Wall -O -m1 -nostdlib -ffreestanding -Wstrict-prototypes $(INCLUDES) $(TARGET) $(EXTRA_DEFINES)
29 29
30ifdef DEBUG 30ifdef DEBUG
31CFLAGS += -g -DDEBUG 31CFLAGS += -g -DDEBUG
32else 32else
33CFLAGS += -fomit-frame-pointer -fschedule-insns 33CFLAGS += -fomit-frame-pointer -fschedule-insns
34endif 34endif
35 35
36SRC := $(wildcard drivers/*.c common/*.c *.c) 36SRC := $(wildcard drivers/*.c common/*.c *.c)