[oe-commits] [openembedded-core] 01/60: libgcc: Create linux-musleabihf and linux-gnueabihf symlinks

git at git.openembedded.org git at git.openembedded.org
Mon Apr 8 06:59:24 UTC 2019


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit f58cf0d0ff05636a70330c54f7e537f9480674c4
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Wed Apr 3 22:49:32 2019 -0700

    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
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/recipes-devtools/gcc/libgcc.inc | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta/recipes-devtools/gcc/libgcc.inc b/meta/recipes-devtools/gcc/libgcc.inc
index e4e0c48..e008d14 100644
--- a/meta/recipes-devtools/gcc/libgcc.inc
+++ b/meta/recipes-devtools/gcc/libgcc.inc
@@ -11,6 +11,13 @@ do_install_append_class-target () {
 		esac
 		ln -s ${TARGET_SYS} ${D}${libdir}/${TARGET_ARCH}${TARGET_VENDOR}-$extra_target_os
 	fi
+	if [ -n "${@ bb.utils.contains('TUNE_CCARGS_MFLOAT', 'hard', 'hf', '', d)}" ]; then
+		case "${TARGET_OS}" in
+			"linux-musleabi") extra_target_os="linux-musleabihf";;
+			"linux-gnueabi") extra_target_os="linux-gnueabihf";;
+		esac
+		ln -s ${TARGET_SYS} ${D}${libdir}/${TARGET_ARCH}${TARGET_VENDOR}-$extra_target_os
+	fi
 }
 
 PACKAGES = "\

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list