Skip to content
Snippets Groups Projects
Commit cce71a74 authored by Dean Camera's avatar Dean Camera
Browse files

Enable GCC's -pipe option by default, to build projects using intermediary...

Enable GCC's -pipe option by default, to build projects using intermediary logical OS pipes rather than temporary files on disk.
parent 1d2f231c
Branches
Tags
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment