mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-01 08:55:34 +00:00
efi: Build the 64-bit app properly
Now that the linker crash is resolved, build the 64-bit EFI app, including all the required code. Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
081dfcf783
commit
ce2f09bcc2
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -1781,9 +1781,9 @@ else
|
||||||
quiet_cmd_u-boot__ ?= LD $@
|
quiet_cmd_u-boot__ ?= LD $@
|
||||||
cmd_u-boot__ ?= $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_u-boot) -o $@ \
|
cmd_u-boot__ ?= $(LD) $(KBUILD_LDFLAGS) $(LDFLAGS_u-boot) -o $@ \
|
||||||
-T u-boot.lds $(u-boot-init) \
|
-T u-boot.lds $(u-boot-init) \
|
||||||
$(if $(CONFIG_EFI_APP_64BIT),,--whole-archive) \
|
--whole-archive \
|
||||||
$(u-boot-main) \
|
$(u-boot-main) \
|
||||||
$(if $(CONFIG_EFI_APP_64BIT),,--no-whole-archive) \
|
--no-whole-archive \
|
||||||
$(PLATFORM_LIBS) -Map u-boot.map; \
|
$(PLATFORM_LIBS) -Map u-boot.map; \
|
||||||
$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
|
$(if $(ARCH_POSTLINK), $(MAKE) -f $(ARCH_POSTLINK) $@, true)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue