Files
Martin Jansa 334f77d587 llvm2.8: Import from meta-java
* 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>
2013-04-19 02:45:27 +02:00

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