mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
334f77d587
* llvm is generic enough to be useful outside meta-java e.g. we need it to enable llvmpipe galium driver in mesa * imported without any modification (except indentation), all credits go to Henning Heinold and Khem Raj for maintaining it in meta-java Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
11 lines
291 B
Bash
11 lines
291 B
Bash
#!/bin/sh
|
|
# Wrapper script for real llvm-config. Simply calls
|
|
|
|
if [ $WANT_LLVM_RELEASE ]; then
|
|
exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@}
|
|
else
|
|
echo "The variable WANT_LLVM_RELEASE is not defined and exported"
|
|
echo "by your build recipe. Go figure."
|
|
exit 1
|
|
fi
|