[llvm-commits] [stacker] r39909 - in /stacker/trunk: ModuleInfo.txt build-for-llvm-top.sh

Reid Spencer rspencer at reidspencer.com
Mon Jul 16 00:51:43 PDT 2007


Author: reid
Date: Mon Jul 16 02:51:40 2007
New Revision: 39909

URL: http://llvm.org/viewvc/llvm-project?rev=39909&view=rev
Log:
Prepare stacker module for the new llvm-top build mechanism.

Added:
    stacker/trunk/build-for-llvm-top.sh   (with props)
Modified:
    stacker/trunk/ModuleInfo.txt

Modified: stacker/trunk/ModuleInfo.txt
URL: http://llvm.org/viewvc/llvm-project/stacker/trunk/ModuleInfo.txt?rev=39909&r1=39908&r2=39909&view=diff

==============================================================================
--- stacker/trunk/ModuleInfo.txt (original)
+++ stacker/trunk/ModuleInfo.txt Mon Jul 16 02:51:40 2007
@@ -1,8 +1,2 @@
-# This file defines the relationship of this module to other modules and 
-# tells llvm-top how to drive it.
-
-# Declare that stacker depends on llvm.
 DepModule: llvm
-ConfigCmd: ./configure --prefix=@INSTALL_PREFIX@ --with-llvmsrc=@LLVM_TOP@/llvm --with-llvmobj=@LLVM_TOP@/llvm
-ConfigFile: ./config.status
-BuildCmd: make build-for-llvm-top LLVM_TOP=@LLVM_TOP@
+BuildCmd: ./build-for-llvm-top.sh

Added: stacker/trunk/build-for-llvm-top.sh
URL: http://llvm.org/viewvc/llvm-project/stacker/trunk/build-for-llvm-top.sh?rev=39909&view=auto

==============================================================================
--- stacker/trunk/build-for-llvm-top.sh (added)
+++ stacker/trunk/build-for-llvm-top.sh Mon Jul 16 02:51:40 2007
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+is_debug=1
+for arg in "$@" ; do
+  case "$arg" in
+    LLVM_TOP=*)
+      LLVM_TOP=`echo "$arg" | sed -e 's/LLVM_TOP=//'`
+      ;;
+    PREFIX=*)
+      PREFIX=`echo "$arg" | sed -e 's/PREFIX=//'`
+      ;;
+    ENABLE_OPTIMIZED=1)
+      is_debug=0
+      ;;
+    *=*)
+      build_opts="$build_opts $arg"
+      ;;
+    --*)
+      config_opts="$config_opts $arg"
+      ;;
+  esac
+done
+
+# See if we have previously been configured by sensing the presense
+# of the config.status scripts
+config_status="$build_dir/config.status"
+if test ! -d "$config_status" ; then
+  # We must configure so build a list of configure options
+  config_options="--prefix=$PREFIX --with-llvmsrc=$LLVM_TOP/llvm"
+  config_options="$config_options --with-llvmobj=$LLVM_TOP/llvm"
+  echo ./configure $config_options $config_opts
+  ./configure $config_options $config_opts
+fi
+
+make $build_opts && make install $build_opts

Propchange: stacker/trunk/build-for-llvm-top.sh

------------------------------------------------------------------------------
    svn:executable = *





More information about the llvm-commits mailing list