diff options
author | Samuli Piippo <samuli.piippo@digia.com> | 2013-07-03 12:17:20 +0300 |
---|---|---|
committer | Samuli Piippo <samuli.piippo@digia.com> | 2013-07-08 10:51:00 +0300 |
commit | 2aaccd81fafa7b5b234ee07629af4fe15bef20d5 (patch) | |
tree | b12770f12fb09bc5b98c0ffb6ab8c66b17f01c67 /recipes/llvm/llvm-common | |
parent | 1cd6345fe5ec75a9517ecef6acb008ab3b716214 (diff) | |
download | meta-boot2qt-2aaccd81fafa7b5b234ee07629af4fe15bef20d5.tar.gz |
llvm: recipes for llvm 3.2
Pulled from meta-oe/master
Change-Id: I3fe51eca1b64263a6f90c9bb96059cc3307880c5
Reviewed-by: Samuli Piippo <samuli.piippo@digia.com>
Diffstat (limited to 'recipes/llvm/llvm-common')
-rw-r--r-- | recipes/llvm/llvm-common/llvm-config | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes/llvm/llvm-common/llvm-config b/recipes/llvm/llvm-common/llvm-config new file mode 100644 index 0000000..a9a416d --- /dev/null +++ b/recipes/llvm/llvm-common/llvm-config | |||
@@ -0,0 +1,10 @@ | |||
1 | #!/bin/sh | ||
2 | # Wrapper script for real llvm-config. Simply calls | ||
3 | |||
4 | if [ $WANT_LLVM_RELEASE ]; then | ||
5 | exec `dirname $0`/${TARGET_PREFIX}llvm-config$WANT_LLVM_RELEASE ${@} | ||
6 | else | ||
7 | echo "The variable WANT_LLVM_RELEASE is not defined and exported" | ||
8 | echo "by your build recipe. Go figure." | ||
9 | exit 1 | ||
10 | fi | ||