The llvm-config2.x script doesn't get placed in the target sysroot crosscripts directory otherwise.
Signed-off-by: Jonathan Liu <[email protected]> --- meta-oe/recipes-core/llvm/llvm.inc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/meta-oe/recipes-core/llvm/llvm.inc b/meta-oe/recipes-core/llvm/llvm.inc index b2ab935..546a40b 100644 --- a/meta-oe/recipes-core/llvm/llvm.inc +++ b/meta-oe/recipes-core/llvm/llvm.inc @@ -136,6 +136,13 @@ do_install() { # later for native case install -d ${D}${bindir} install -m 0755 bin/llvm-config ${D}${bindir} +} + +SYSROOT_PREPROCESS_FUNCS += "llvm_sysroot_preprocess" +SYSROOT_PREPROCESS_FUNCS_virtclass-native += "" + +llvm_sysroot_preprocess() { + cd ${OECMAKE_BUILDPATH} # Fix the paths in the config script to make it find the binaries and # library files. Doing so allows 3rd party configure scripts working -- 1.8.2.3 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
