aboutsummaryrefslogtreecommitdiffstats
path: root/Projects/Magstripe
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-07-15 17:13:33 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-07-15 17:13:33 +0000
commit9299735c75ba99347c7280b2e73064bef693989f (patch)
treee9034f3844a2dc1a2567d26c1ebe3c8407ca9493 /Projects/Magstripe
parentf4710f6f8653219b432f3a843ce117d4f4c136fd (diff)
downloadlufa-9299735c75ba99347c7280b2e73064bef693989f.tar.gz
lufa-9299735c75ba99347c7280b2e73064bef693989f.tar.bz2
lufa-9299735c75ba99347c7280b2e73064bef693989f.zip
Disable strict aliasing explicitly in the project makefiles, as this is apparently enabled by default in newer AVR-GCC builds, and aliasing is used heavily for type-punning through the LUFA and third party library's codebase.
Diffstat (limited to 'Projects/Magstripe')
-rw-r--r--Projects/Magstripe/makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Projects/Magstripe/makefile b/Projects/Magstripe/makefile
index 8342466cb..d6f2bd074 100644
--- a/Projects/Magstripe/makefile
+++ b/Projects/Magstripe/makefile
@@ -220,10 +220,11 @@ CFLAGS += $(CDEFS)
CFLAGS += -O$(OPT)
CFLAGS += -funsigned-char
CFLAGS += -funsigned-bitfields
+CFLAGS += -ffunction-sections
CFLAGS += -fno-inline-small-functions
CFLAGS += -fpack-struct
CFLAGS += -fshort-enums
-CFLAGS += -ffunction-sections
+CFLAGS += -fno-strict-aliasing
CFLAGS += -Wall
CFLAGS += -Wstrict-prototypes
CFLAGS += -Wundef