mirror of
https://git.yoctoproject.org/poky
synced 2026-09-19 09:49:33 +02:00
binutils/gcc/gdb: Add TARGET_ARCH to PN for all cross recipes
This allows them to co-exist together in the native sysroot, with one set of cross tools per target architecture. (From OE-Core rev: a2c5509520d5c3e082f55844e6545d0309565f8f) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -5,6 +5,8 @@ PACKAGES = ""
|
||||
INHIBIT_AUTOTOOLS_DEPS = "1"
|
||||
INHIBIT_DEFAULT_DEPS = "1"
|
||||
|
||||
PN = "gcc-cross-initial-${TARGET_ARCH}"
|
||||
|
||||
CROSS_TARGET_SYS_DIR_append = ".${PN}"
|
||||
|
||||
# This is intended to be a -very- basic config
|
||||
@@ -68,8 +70,8 @@ do_install () {
|
||||
|
||||
# gcc-runtime installs libgcc into a special location in staging since it breaks doing a standalone build
|
||||
case ${PN} in
|
||||
*gcc-cross-initial|*gcc-crosssdk-initial)
|
||||
dest=${D}/${includedir}/gcc-build-internal-initial-${MULTIMACH_TARGET_SYS}
|
||||
*gcc-cross-initial-${TARGET_ARCH}|*gcc-crosssdk-initial-${TARGET_ARCH})
|
||||
dest=${D}/${includedir}/gcc-build-internal-initial-${TARGET_SYS}
|
||||
hardlinkdir . $dest
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user