aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/AVRISP
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-08-30 06:52:03 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-08-30 06:52:03 +0000
commit0f51db56c0ecaba0b58c6df92bc1fca910362359 (patch)
treed5e19eaa3639904877a39a0f46f09e5713b9edd9 /Projects/AVRISP
parent244c86429b6eea1f86c5bcca070889d6adbc15b0 (diff)
downloadlufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.tar.gz
lufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.tar.bz2
lufa-0f51db56c0ecaba0b58c6df92bc1fca910362359.zip
Replace -finline-limit with -fno-inline-small-functions in project makefiles.
Diffstat (limited to 'Projects/AVRISP')
-rw-r--r--Projects/AVRISP/AVRISP.c2
-rw-r--r--Projects/AVRISP/makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Projects/AVRISP/AVRISP.c b/Projects/AVRISP/AVRISP.c
index e4d467f54..016d74ce8 100644
--- a/Projects/AVRISP/AVRISP.c
+++ b/Projects/AVRISP/AVRISP.c
@@ -35,7 +35,7 @@
*/
// TODO: Add in software SPI for lower programming speeds below 125KHz
-// TODO: Add reversed target connector checks
+// TODO: Add reversed/shorted target connector checks
#include "AVRISP.h"
diff --git a/Projects/AVRISP/makefile b/Projects/AVRISP/makefile
index 5ea1176b6..0726f86b6 100644
--- a/Projects/AVRISP/makefile
+++ b/Projects/AVRISP/makefile
@@ -224,9 +224,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