diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-30 06:52:03 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-30 06:52:03 +0000 |
commit | 0f51db56c0ecaba0b58c6df92bc1fca910362359 (patch) | |
tree | d5e19eaa3639904877a39a0f46f09e5713b9edd9 /Demos/Device/ClassDriver/Joystick | |
parent | 244c86429b6eea1f86c5bcca070889d6adbc15b0 (diff) | |
download | lufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.tar.gz lufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.tar.bz2 lufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.zip |
Replace -finline-limit with -fno-inline-small-functions in project makefiles.
Diffstat (limited to 'Demos/Device/ClassDriver/Joystick')
-rw-r--r-- | Demos/Device/ClassDriver/Joystick/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Device/ClassDriver/Joystick/makefile b/Demos/Device/ClassDriver/Joystick/makefile index 1432956bf..8b447e570 100644 --- a/Demos/Device/ClassDriver/Joystick/makefile +++ b/Demos/Device/ClassDriver/Joystick/makefile @@ -219,9 +219,9 @@ CFLAGS += -O$(OPT) CFLAGS += -funsigned-char
CFLAGS += -funsigned-bitfields
CFLAGS += -ffunction-sections
+CFLAGS += -fno-inline-small-functions
CFLAGS += -fpack-struct
CFLAGS += -fshort-enums
-CFLAGS += -finline-limit=20
CFLAGS += -Wall
CFLAGS += -Wstrict-prototypes
CFLAGS += -Wundef
|