summaryrefslogtreecommitdiffstats
path: root/asm
diff options
context:
space:
mode:
authorNicholas Piggin <npiggin@gmail.com>2018-02-10 18:42:49 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2018-02-28 20:28:39 -0600
commitf6159cff5d91e5c0810d0c9285a1d2370a38e2b7 (patch)
treec6148aef1cc7f967baaf9b7a65486b7b4c95678f /asm
parentf30286c494312caa81333a077da58f501894c2bb (diff)
downloadtalos-skiboot-f6159cff5d91e5c0810d0c9285a1d2370a38e2b7.tar.gz
talos-skiboot-f6159cff5d91e5c0810d0c9285a1d2370a38e2b7.zip
build: use thin archives rather than incremental linking
This changes to build system to use thin archives rather than incremental linking for built-in.o, similar to recent change to Linux. built-in.o is renamed to built-in.a, and is created as a thin archive with no index, for speed and size. All built-in.a are aggregated into a skiboot.tmp.a which is a thin archive built with an index, making it suitable or linking. This is input into the final link. The advantags of build size and linker code placement flexibility are not as great with skiboot as a bigger project like Linux, but it's a conceptually better way to build, and is more compatible with link time optimisation in toolchains which might be interesting for skiboot particularly for size reductions. Size of build tree before this patch is 34.4MB, afterwards 23.1MB. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'asm')
-rw-r--r--asm/Makefile.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/asm/Makefile.inc b/asm/Makefile.inc
index 2828caf9..343abc23 100644
--- a/asm/Makefile.inc
+++ b/asm/Makefile.inc
@@ -2,7 +2,7 @@
SUBDIRS += asm
ASM_OBJS = head.o misc.o kernel-wrapper.o cvc_entry.o
-ASM=asm/built-in.o
+ASM=asm/built-in.a
# Add extra dependency to the kernel wrapper
kernel_wrapper.o : $(KERNEL)
OpenPOWER on IntegriCloud