build: use thin archives instead of incremental linking
[platform/kernel/u-boot.git] / arch / sandbox / config.mk
index 189e9c2..2149771 100644 (file)
@@ -17,13 +17,17 @@ PLATFORM_CPPFLAGS += $(shell $(SDL_CONFIG) --cflags)
 endif
 
 cmd_u-boot__ = $(CC) -o $@ -Wl,-T u-boot.lds $(u-boot-init) \
-       -Wl,--start-group $(u-boot-main) -Wl,--end-group \
+       -Wl,--whole-archive \
+               $(u-boot-main) \
+       -Wl,--no-whole-archive \
        $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot.map
 
 cmd_u-boot-spl = (cd $(obj) && $(CC) -o $(SPL_BIN) -Wl,-T u-boot-spl.lds \
        $(patsubst $(obj)/%,%,$(u-boot-spl-init)) \
-       -Wl,--start-group $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
-       $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) -Wl,--end-group \
+       -Wl,--whole-archive \
+               $(patsubst $(obj)/%,%,$(u-boot-spl-main)) \
+               $(patsubst $(obj)/%,%,$(u-boot-spl-platdata)) \
+       -Wl,--no-whole-archive \
        $(PLATFORM_LIBS) -Wl,-Map -Wl,u-boot-spl.map -Wl,--gc-sections)
 
 CONFIG_ARCH_DEVICE_TREE := sandbox