diff options
author | Khem Raj <raj.khem@gmail.com> | 2019-04-03 22:49:32 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2019-04-09 13:44:39 +0100 |
commit | e605e2d0488d3923e9b89855e26b07cc55668c62 (patch) | |
tree | c49f542c7e2e9397c2369c18aab0d5163239ffa2 /meta/recipes-devtools | |
parent | 89c4424d6d875e102ca324d3b81426b4466dccc5 (diff) | |
download | poky-e605e2d0488d3923e9b89855e26b07cc55668c62.tar.gz |
libgcc: Create linux-musleabihf and linux-gnueabihf symlinks
When we have hard-float ABI enabled, certain tools e.g. llvm/clang
expects the hf version of tuples for crt files from libgcc, therefore
create a symlink to help the cause.
This makes clang work with hard-float defaults on target
(From OE-Core rev: f58cf0d0ff05636a70330c54f7e537f9480674c4)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/gcc/libgcc.inc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/libgcc.inc b/meta/recipes-devtools/gcc/libgcc.inc index e4e0c48007..e008d14f36 100644 --- a/meta/recipes-devtools/gcc/libgcc.inc +++ b/meta/recipes-devtools/gcc/libgcc.inc | |||
@@ -11,6 +11,13 @@ do_install_append_class-target () { | |||
11 | esac | 11 | esac |
12 | ln -s ${TARGET_SYS} ${D}${libdir}/${TARGET_ARCH}${TARGET_VENDOR}-$extra_target_os | 12 | ln -s ${TARGET_SYS} ${D}${libdir}/${TARGET_ARCH}${TARGET_VENDOR}-$extra_target_os |
13 | fi | 13 | fi |
14 | if [ -n "${@ bb.utils.contains('TUNE_CCARGS_MFLOAT', 'hard', 'hf', '', d)}" ]; then | ||
15 | case "${TARGET_OS}" in | ||
16 | "linux-musleabi") extra_target_os="linux-musleabihf";; | ||
17 | "linux-gnueabi") extra_target_os="linux-gnueabihf";; | ||
18 | esac | ||
19 | ln -s ${TARGET_SYS} ${D}${libdir}/${TARGET_ARCH}${TARGET_VENDOR}-$extra_target_os | ||
20 | fi | ||
14 | } | 21 | } |
15 | 22 | ||
16 | PACKAGES = "\ | 23 | PACKAGES = "\ |