[llvm-commits] [llvm-gcc-4.2] r40573 - /llvm-gcc-4.2/trunk/build-for-llvm-top.sh
Reid Spencer
rspencer at reidspencer.com
Sat Jul 28 12:44:05 PDT 2007
Author: reid
Date: Sat Jul 28 14:44:03 2007
New Revision: 40573
URL: http://llvm.org/viewvc/llvm-project?rev=40573&view=rev
Log:
Make the build directory be build.llvm-gcc-4.2 instead of build.llvm-gcc-4.0 so
it doesn't collide with the llvm-gcc-4.0 build.
Modified:
llvm-gcc-4.2/trunk/build-for-llvm-top.sh
Modified: llvm-gcc-4.2/trunk/build-for-llvm-top.sh
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/build-for-llvm-top.sh?rev=40573&r1=40572&r2=40573&view=diff
==============================================================================
--- llvm-gcc-4.2/trunk/build-for-llvm-top.sh (original)
+++ llvm-gcc-4.2/trunk/build-for-llvm-top.sh Sat Jul 28 14:44:03 2007
@@ -1,5 +1,5 @@
#!/bin/sh
-# build script for llvm-gcc-4.0
+# build script for llvm-gcc-4.2
#
# This file was developed by Reid Spencer and is distributed under the
# University of Illinois Open Source License. See LICENSE.TXT for details.
@@ -14,7 +14,7 @@
process_arguments "$@"
# First, see if the build directory is there. If not, create it.
-build_dir="$LLVM_TOP/build.llvm-gcc-4.0"
+build_dir="$LLVM_TOP/build.llvm-gcc-4.2"
if test ! -d "$build_dir" ; then
mkdir -p "$build_dir"
fi
@@ -27,8 +27,10 @@
config_options="--prefix=$PREFIX --enable-llvm=$LLVM_TOP/llvm "
config_options="$config_options --program-prefix=llvm-"
config_options="$config_options --enable-languages=c,c++"
+ config_options="$config_options --disable-bootstrap"
+ config_options="$config_options --with-gxx-include-dir=/proj/install/include/c++/4.2.1"
if test "$OPTIMIZED" -eq 0 ; then
- config_options="$config_options --enable-checking --enable-libstdcxx-debug"
+ config_options="$config_options --enable-checking"
fi
host=`./config.guess`
if test ! -z `echo "$host" | grep 'linux'` ; then
More information about the llvm-commits
mailing list