From 2aaccd81fafa7b5b234ee07629af4fe15bef20d5 Mon Sep 17 00:00:00 2001 From: Samuli Piippo Date: Wed, 3 Jul 2013 12:17:20 +0300 Subject: llvm: recipes for llvm 3.2 Pulled from meta-oe/master Change-Id: I3fe51eca1b64263a6f90c9bb96059cc3307880c5 Reviewed-by: Samuli Piippo --- recipes/llvm/llvm-common/llvm-config | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 recipes/llvm/llvm-common/llvm-config (limited to 'recipes/llvm/llvm-common/llvm-config') 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 @@ +#!/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 -- cgit v1.2.3-54-g00ecf