summaryrefslogtreecommitdiffstats
path: root/payloads
diff options
context:
space:
mode:
authorStefan Reinauer <stefan.reinauer@coreboot.org>2015-07-01 11:30:03 -0700
committerStefan Reinauer <stefan.reinauer@coreboot.org>2015-07-01 22:07:48 +0200
commite559536daa88fa8c1adfdfb0d840fe55719ceb8b (patch)
tree4c130d7b0ffd906632265aaae4e25a13ff95d9e9 /payloads
parentec88681ca31ecec91c853e75a0d8aea7ce17996e (diff)
downloadcoreboot-staging-e559536daa88fa8c1adfdfb0d840fe55719ceb8b.zip
coreboot-staging-e559536daa88fa8c1adfdfb0d840fe55719ceb8b.tar.gz
libpayload: always compile with -ffunction-sections
Always compile with -ffunction-sections and -fdata-sections This does not hurt, and it allows the linker to produce much smaller binaries in some circumstances. Change-Id: Ibf9f24c210d6d2ed40451b4cf0d68ce88220bc5f Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: http://review.coreboot.org/10750 Tested-by: build bot (Jenkins) Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'payloads')
-rw-r--r--payloads/libpayload/Makefile.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/payloads/libpayload/Makefile.inc b/payloads/libpayload/Makefile.inc
index a3094aa..05754fe 100644
--- a/payloads/libpayload/Makefile.inc
+++ b/payloads/libpayload/Makefile.inc
@@ -59,6 +59,7 @@ INCLUDES := -Iinclude -Iinclude/$(ARCHDIR-y) -I$(obj) -include include/kconfig.h
CFLAGS = $(EXTRA_CFLAGS) $(INCLUDES) -Os -pipe -nostdinc -ggdb3
CFLAGS += -nostdlib -fno-builtin -ffreestanding -fomit-frame-pointer
+CFLAGS += -ffunction-sections -fdata-sections
CFLAGS += -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes
CFLAGS += -Wwrite-strings -Wredundant-decls -Wno-trigraphs
CFLAGS += -Wstrict-aliasing -Wshadow -Werror
OpenPOWER on IntegriCloud