forked from llvm-mirror/llvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare for building from llvm-top. Unfortunately, this doesn't work …
…because of the cyclic depndency between llvm and llvm-gcc-4-0. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@39910 91177308-0d34-0410-b5e6-96231b3b80d8
- Loading branch information
Reid Spencer
committed
Jul 16, 2007
1 parent
cb7122b
commit 09d0594
Showing
2 changed files
with
34 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |