git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5e5ddf7
)
scripts/Makefile.lib: add PLATFORM_LIBGCC to efi linking
author
Adriano Cordova
<adrianox@gmail.com>
Thu, 8 May 2025 18:30:32 +0000
(14:30 -0400)
committer
Heinrich Schuchardt
<heinrich.schuchardt@canonical.com>
Sun, 11 May 2025 11:30:31 +0000
(13:30 +0200)
Link .efi applications using libgcc
Signed-off-by: Adriano Cordova <adriano.cordova@canonical.com>
scripts/Makefile.lib
patch
|
blob
|
history
diff --git
a/scripts/Makefile.lib
b/scripts/Makefile.lib
index
83fd5ff
..
e89a4a5
100644
(file)
--- a/
scripts/Makefile.lib
+++ b/
scripts/Makefile.lib
@@
-497,7
+497,7
@@
KBUILD_EFILDFLAGS = -nostdlib -zexecstack -znocombreloc -znorelro
KBUILD_EFILDFLAGS += $(call ld-option,--no-warn-rwx-segments)
quiet_cmd_efi_ld = LD $@
cmd_efi_ld = $(LD) $(KBUILD_EFILDFLAGS) -L $(srctree) -T $(EFI_LDS_PATH) \
- -shared -Bsymbolic -s $^ -o $@
+ -shared -Bsymbolic -s $^
$(PLATFORM_LIBGCC)
-o $@
EFI_LDS_PATH = arch/$(ARCH)/lib/$(EFI_LDS)