aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-06-19 19:36:03 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-06-19 19:36:03 +0000
commitcce71a74e79c61e3b0975ac41d13147383d257ac (patch)
tree7662cb5c19cb7ab7ba2d4445b99c9ff9163cbc90 /LUFA
parent1d2f231cc132581999d3cc24a072639b06e0f84f (diff)
downloadlufa-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')
-rw-r--r--LUFA/Build/lufa.build.in2
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)