summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/llvm/llvm/llvm-config9
-rw-r--r--meta/recipes-graphics/mesa/mesa.inc10
2 files changed, 9 insertions, 10 deletions
diff --git a/meta/recipes-devtools/llvm/llvm/llvm-config b/meta/recipes-devtools/llvm/llvm/llvm-config
index a45f38c650..5e4ded2da5 100644
--- a/meta/recipes-devtools/llvm/llvm/llvm-config
+++ b/meta/recipes-devtools/llvm/llvm/llvm-config
@@ -29,6 +29,15 @@ for arg in "$@"; do
29 --ldflags) 29 --ldflags)
30 output="${output} ${LDFLAGS}" 30 output="${output} ${LDFLAGS}"
31 ;; 31 ;;
32 --shared-mode)
33 output="${output} shared"
34 ;;
35 --libs)
36 output="${output} -lLLVM"
37 ;;
38 --link-shared)
39 break
40 ;;
32 *) 41 *)
33 remain="${remain} ${arg}" 42 remain="${remain} ${arg}"
34 ;; 43 ;;
diff --git a/meta/recipes-graphics/mesa/mesa.inc b/meta/recipes-graphics/mesa/mesa.inc
index 6246b723cf..1949fc15a9 100644
--- a/meta/recipes-graphics/mesa/mesa.inc
+++ b/meta/recipes-graphics/mesa/mesa.inc
@@ -55,17 +55,7 @@ ANY_OF_DISTRO_FEATURES:class-target = "opengl vulkan"
55 55
56PLATFORMS ??= "${@bb.utils.filter('PACKAGECONFIG', 'x11 wayland', d)}" 56PLATFORMS ??= "${@bb.utils.filter('PACKAGECONFIG', 'x11 wayland', d)}"
57 57
58# By placing llvm-config in the target sysroot bindir, it will then map values
59# to the target libdir magically. We can safely add to path as there are no other binaries
60# there.
61PATH:prepend = "${STAGING_BINDIR_CROSS}:${STAGING_BINDIR}:"
62MESA_LLVM_RELEASE ?= "${LLVMVERSION}" 58MESA_LLVM_RELEASE ?= "${LLVMVERSION}"
63do_configure:prepend () {
64 if [ -e ${STAGING_BINDIR_NATIVE}/llvm-config${MESA_LLVM_RELEASE} ]; then
65 cp ${STAGING_BINDIR_NATIVE}/llvm-config${MESA_LLVM_RELEASE} ${STAGING_BINDIR}
66 cp ${STAGING_BINDIR_NATIVE}/llvm-config ${STAGING_BINDIR}
67 fi
68}
69 59
70# set the MESA_BUILD_TYPE to either 'release' (default) or 'debug' 60# set the MESA_BUILD_TYPE to either 'release' (default) or 'debug'
71# by default the upstream mesa sources build a debug release 61# by default the upstream mesa sources build a debug release