mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
binutils: Fix variable conflict
A recent binutils patch added the LDGOLD variable but its already used for controlling EXTRA_OECONF options for gold. Separate the two variables to different names to avoid build warnings and confusion. (From OE-Core rev: 713c83fd00ab16250f05b0c3933f0c8178b8a33e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -38,8 +38,8 @@ FILES_${PN}-dev = " \
|
|||||||
# Rather than duplicating multiple entries for these, make one
|
# Rather than duplicating multiple entries for these, make one
|
||||||
# list and reuse it.
|
# list and reuse it.
|
||||||
|
|
||||||
LDGOLD ?= "ld.gold dwp"
|
LDGOLD_ALTS ?= "ld.gold dwp"
|
||||||
LDGOLD_riscv64 = ""
|
LDGOLD_ALTS_riscv64 = ""
|
||||||
|
|
||||||
USE_ALTERNATIVES_FOR = " \
|
USE_ALTERNATIVES_FOR = " \
|
||||||
addr2line \
|
addr2line \
|
||||||
@@ -50,7 +50,7 @@ USE_ALTERNATIVES_FOR = " \
|
|||||||
gprof \
|
gprof \
|
||||||
ld \
|
ld \
|
||||||
ld.bfd \
|
ld.bfd \
|
||||||
${LDGOLD} \
|
${LDGOLD_ALTS} \
|
||||||
nm \
|
nm \
|
||||||
objcopy \
|
objcopy \
|
||||||
objdump \
|
objdump \
|
||||||
|
|||||||
Reference in New Issue
Block a user