aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-19 19:36:03 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2012-06-19 19:36:03 +0000
commit23c2de16bdb91285ff734ad4f39b33bff7c0dc25 (patch)
tree7662cb5c19cb7ab7ba2d4445b99c9ff9163cbc90
parente9553898ba2896e43f71c2f34c72d4cf682db069 (diff)
Enable GCC's -pipe option by default, to build projects using intermediary logical OS pipes rather than temporary files on disk.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2357 d5102386-fcda-11dd-9fdb-3debd5008f28
-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 f46304c4..7eb65878 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)