From cce71a74e79c61e3b0975ac41d13147383d257ac Mon Sep 17 00:00:00 2001
From: Dean Camera <dean@fourwalledcubicle.com>
Date: Tue, 19 Jun 2012 19:36:03 +0000
Subject: [PATCH] Enable GCC's -pipe option by default, to build projects using
 intermediary logical OS pipes rather than temporary files on disk.

---
 LUFA/Build/lufa.build.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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)
-- 
GitLab