diff options
| author | Olof Johansson <[email protected]> | 2018-07-13 08:30:33 -0700 |
|---|---|---|
| committer | Will Deacon <[email protected]> | 2018-07-23 15:30:19 +0100 |
| commit | c931d34ea0853d41349e93f871bd3f17f1c03a6b (patch) | |
| tree | a3a9b906f7663a5860d07c9fd9c720de01aa9b3a /scripts/Kbuild.include | |
| parent | 14d6e289a89780377f8bb09de8926d3c62d763cd (diff) | |
arm64: build with baremetal linker target instead of Linux when available
Not all toolchains have the baremetal elf targets, RedHat/Fedora ones
in particular. So, probe for whether it's available and use the previous
(linux) targets if it isn't.
Reported-by: Laura Abbott <[email protected]>
Tested-by: Laura Abbott <[email protected]>
Acked-by: Masahiro Yamada <[email protected]>
Cc: Paul Kocialkowski <[email protected]>
Signed-off-by: Olof Johansson <[email protected]>
Signed-off-by: Will Deacon <[email protected]>
Diffstat (limited to 'scripts/Kbuild.include')
| -rw-r--r-- | scripts/Kbuild.include | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Kbuild.include b/scripts/Kbuild.include index c8156d61678c..1e13f502b42f 100644 --- a/scripts/Kbuild.include +++ b/scripts/Kbuild.include @@ -163,8 +163,8 @@ cc-ldoption = $(call try-run,\ $(CC) $(1) $(KBUILD_CPPFLAGS) $(CC_OPTION_CFLAGS) -nostdlib -x c /dev/null -o "$$TMP",$(1),$(2)) # ld-option -# Usage: LDFLAGS += $(call ld-option, -X) -ld-option = $(call try-run, $(LD) $(LDFLAGS) $(1) -v,$(1),$(2)) +# Usage: LDFLAGS += $(call ld-option, -X, -Y) +ld-option = $(call try-run, $(LD) $(LDFLAGS) $(1) -v,$(1),$(2),$(3)) # ar-option # Usage: KBUILD_ARFLAGS := $(call ar-option,D) |