summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:43:14 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-04-23 21:43:14 +0000
commit3236c3581b591e2d482e356b979738ccc4b8f08f (patch)
treebeada323a1d405111219565146362a1938350d45
parent88c398ab81d54c912a3db8e4c27abd1b52d7ff04 (diff)
downloadrockbox-3236c3581b591e2d482e356b979738ccc4b8f08f.tar.gz
rockbox-3236c3581b591e2d482e356b979738ccc4b8f08f.zip
-fomit-frame-pointer kills gdb stack trace, so I removed it
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@203 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--firmware/test/i2c/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/test/i2c/Makefile b/firmware/test/i2c/Makefile
index dbb874084f..fd3b9ad6a8 100644
--- a/firmware/test/i2c/Makefile
+++ b/firmware/test/i2c/Makefile
@@ -6,7 +6,7 @@ OC = sh-elf-objcopy
6 6
7INCLUDES=-I../.. -I../../drivers 7INCLUDES=-I../.. -I../../drivers
8 8
9CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fomit-frame-pointer -fschedule-insns -fno-builtin $(INCLUDES) 9CFLAGS = -g -Wall -m1 -nostdlib -Wstrict-prototypes -fschedule-insns -fno-builtin $(INCLUDES)
10AFLAGS += -small -relax 10AFLAGS += -small -relax
11 11
12OBJS= crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o ../../debug.o 12OBJS= crt0.o main.o ../../drivers/i2c.o ../../drivers/mas.o ../../debug.o
@@ -38,7 +38,7 @@ dist:
38 tar czvf dist.tar.gz Makefile main.c start.s app.lds 38 tar czvf dist.tar.gz Makefile main.c start.s app.lds
39 39
40clean: 40clean:
41 -rm -f *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~ 41 -rm -f $(OBJS) *.x *.i *.o *.elf *.bin *.map *.mod *.bak *~
42 42
43install: 43install:
44 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos 44 mount /mnt/archos; cp archos.mod /mnt/archos; umount /mnt/archos