diff mbox series

[v5,04/11] llvm: handle libdir in llvm-config

Message ID 20250402-mesa-25-v5-4-ab35f021a83b@oss.qualcomm.com
State New
Headers show
Series mesa: upgrade to 25.0.2 | expand

Commit Message

Dmitry Baryshkov April 2, 2025, 3:18 p.m. UTC
The llvm-config wrapper also needs to override a --libdir switch,
otherwise software (like mesa) end up using TMPDIR-based directory for
Clang resource lookup (and also encoding TMPDIR into the target binary).

Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
---
 meta/recipes-devtools/llvm/llvm/llvm-config | 3 +++
 1 file changed, 3 insertions(+)

Comments

Khem Raj April 3, 2025, 1:05 a.m. UTC | #1
On 4/2/25 8:18 AM, Dmitry Baryshkov wrote:
> The llvm-config wrapper also needs to override a --libdir switch,
> otherwise software (like mesa) end up using TMPDIR-based directory for
> Clang resource lookup (and also encoding TMPDIR into the target binary).
>
> Signed-off-by: Dmitry Baryshkov<dmitry.baryshkov@oss.qualcomm.com>
> ---
>   meta/recipes-devtools/llvm/llvm/llvm-config | 3 +++
>   1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-devtools/llvm/llvm/llvm-config b/meta/recipes-devtools/llvm/llvm/llvm-config
> index 5e4ded2da5bc95d429c6f717a2f25223bbbe210e..6cf3e7578fa96f2893f73077bece4db45f29547c 100644
> --- a/meta/recipes-devtools/llvm/llvm/llvm-config
> +++ b/meta/recipes-devtools/llvm/llvm/llvm-config
> @@ -35,6 +35,9 @@ for arg in "$@"; do
>       --libs)
>         output="${output} -lLLVM"
>         ;;
> +    --libdir)
> +      output="${output} ${libdir}"
> +      ;;


this patch is needed in meta-clang too.

>       --link-shared)
>         break
>         ;;
>
diff mbox series

Patch

diff --git a/meta/recipes-devtools/llvm/llvm/llvm-config b/meta/recipes-devtools/llvm/llvm/llvm-config
index 5e4ded2da5bc95d429c6f717a2f25223bbbe210e..6cf3e7578fa96f2893f73077bece4db45f29547c 100644
--- a/meta/recipes-devtools/llvm/llvm/llvm-config
+++ b/meta/recipes-devtools/llvm/llvm/llvm-config
@@ -35,6 +35,9 @@  for arg in "$@"; do
     --libs)
       output="${output} -lLLVM"
       ;;
+    --libdir)
+      output="${output} ${libdir}"
+      ;;
     --link-shared)
       break
       ;;