From 8db75a24a2f7d0af4bac46e69535733a203226c2 Mon Sep 17 00:00:00 2001 From: Robert Schuster Date: Tue, 31 Mar 2009 11:51:10 +0200 Subject: llvm: Reworked to allow multiple installation of same version. - introduced common include file - provided implementation for llvm 2.5 - added wrapper script and its build recipe - the same for native side llvm2.5 2.5: New recipe llvm2.5-native 2.5: New recipe. llvm-common: New recipe. llvm-common-native: New recipe. --- 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') diff --git a/recipes/llvm/llvm-common/llvm-config b/recipes/llvm/llvm-common/llvm-config new file mode 100644 index 0000000000..5256b8cd06 --- /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`/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 1.2.3-korg