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

Reid Spencer rspencer at reidspencer.com
Mon Jul 16 01:05:19 PDT 2007


Author: reid
Date: Mon Jul 16 03:05:18 2007
New Revision: 39910

URL: http://llvm.org/viewvc/llvm-project?rev=39910&view=rev
Log:
Prepare for building from llvm-top. Unfortunately, this doesn't work because
of the cyclic depndency between llvm and llvm-gcc-4-0.

Added:
    llvm/trunk/build-for-llvm-top.sh
Modified:
    llvm/trunk/ModuleInfo.txt

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

==============================================================================
--- llvm/trunk/ModuleInfo.txt (original)
+++ llvm/trunk/ModuleInfo.txt Mon Jul 16 03:05:18 2007
@@ -1,4 +1,2 @@
-DepModule:
-ConfigCmd: ./configure --prefix=@INSTALL_PREFIX@ --with-llvmgccdir=@LLVM_TOP@/install
-ConfigFile: ./config.status
-BuildCmd: make build-for-llvm-top LLVM_TOP=@LLVM_TOP@
+DepModule: llvm-gcc-4-0
+BuildCmd: build-for-llvm-top.sh

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

==============================================================================
--- llvm/trunk/build-for-llvm-top.sh (added)
+++ llvm/trunk/build-for-llvm-top.sh Mon Jul 16 03:05:18 2007
@@ -0,0 +1,32 @@
+#!/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=//'`
+      ;;
+    *=*)
+      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-llvmgccdir=$PREFIX"
+  echo ./configure $config_options $config_opts
+  ./configure $config_options $config_opts
+fi
+
+echo make $build_opts '&&' make install $build_opts
+make $build_opts && make install $build_opts





More information about the llvm-commits mailing list