diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-19 19:36:03 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-06-19 19:36:03 +0000 |
commit | cce71a74e79c61e3b0975ac41d13147383d257ac (patch) | |
tree | 7662cb5c19cb7ab7ba2d4445b99c9ff9163cbc90 /LUFA/Build | |
parent | 1d2f231cc132581999d3cc24a072639b06e0f84f (diff) | |
download | lufa-cce71a74e79c61e3b0975ac41d13147383d257ac.tar.gz lufa-cce71a74e79c61e3b0975ac41d13147383d257ac.tar.bz2 lufa-cce71a74e79c61e3b0975ac41d13147383d257ac.zip |
Enable GCC's -pipe option by default, to build projects using intermediary logical OS pipes rather than temporary files on disk.
Diffstat (limited to 'LUFA/Build')
-rw-r--r-- | LUFA/Build/lufa.build.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/LUFA/Build/lufa.build.in b/LUFA/Build/lufa.build.in index f46304c4e..7eb65878d 100644 --- a/LUFA/Build/lufa.build.in +++ b/LUFA/Build/lufa.build.in @@ -145,7 +145,7 @@ endif DEPENDENCY_FILES = $(OBJECT_FILES:%.o=%.d) # Create a list of common flags to pass to the compiler/linker/assembler -BASE_CC_FLAGS := +BASE_CC_FLAGS := -pipe ifeq ($(ARCH), AVR8) BASE_CC_FLAGS += -mmcu=$(MCU) -gdwarf-2 -fshort-enums -fno-inline-small-functions -fpack-struct else ifeq ($(ARCH), XMEGA) |