diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-06 02:10:01 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-07-06 02:10:01 +0000 |
commit | 7932ce86bd67450bf52fe795b114c53f08e431e3 (patch) | |
tree | de6aa4cad9d752d4e6b019d3864fb4e81dacba76 /Projects/Webserver/makefile | |
parent | 9ea22ebf4199b111b249309de2d0f0e8db5c6041 (diff) | |
download | lufa-7932ce86bd67450bf52fe795b114c53f08e431e3.tar.gz lufa-7932ce86bd67450bf52fe795b114c53f08e431e3.tar.bz2 lufa-7932ce86bd67450bf52fe795b114c53f08e431e3.zip |
Add the GCC -fno-split-wide-types compile time option to some of the larger user projects to reduce the compiled application size.
Diffstat (limited to 'Projects/Webserver/makefile')
-rw-r--r-- | Projects/Webserver/makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Projects/Webserver/makefile b/Projects/Webserver/makefile index 16a5e148f..175cf1f52 100644 --- a/Projects/Webserver/makefile +++ b/Projects/Webserver/makefile @@ -260,6 +260,7 @@ CFLAGS += -fno-inline-small-functions CFLAGS += -fpack-struct CFLAGS += -fshort-enums CFLAGS += -fno-strict-aliasing +CFLAGS += -fno-split-wide-types CFLAGS += -Wall CFLAGS += -Wstrict-prototypes #CFLAGS += -mshort-calls |