[llvm-commits] [llvm-gcc-4.2] r44140 - in /llvm-gcc-4.2/trunk: GNUmakefile build_gcc

Devang Patel dpatel at apple.com
Wed Nov 14 14:11:08 PST 2007


Author: dpatel
Date: Wed Nov 14 16:11:08 2007
New Revision: 44140

URL: http://llvm.org/viewvc/llvm-project?rev=44140&view=rev
Log:
Find llvm using LLVMCORE_PATH


Modified:
    llvm-gcc-4.2/trunk/GNUmakefile
    llvm-gcc-4.2/trunk/build_gcc

Modified: llvm-gcc-4.2/trunk/GNUmakefile
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/GNUmakefile?rev=44140&r1=44139&r2=44140&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/GNUmakefile (original)
+++ llvm-gcc-4.2/trunk/GNUmakefile Wed Nov 14 16:11:08 2007
@@ -51,6 +51,10 @@
 LLVM_ASSERTIONS := no
 endif
 
+ifndef LLVMCORE_PATH
+LLVMCORE_PATH = /usr/local
+endif
+
 ifndef RC_ProjectSourceVersion
 RC_ProjectSourceVersion = 9999
 endif
@@ -63,8 +67,9 @@
 	cd $(OBJROOT) && \
 	  $(SRC)/build_gcc "$(RC_ARCHS)" "$(TARGETS)" \
 	    $(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) $(ENABLE_LLVM) \
-	    $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) \
-	    $(LLVM_ASSERTIONS)
+	    $(LLVM_ASSERTIONS) $(LLVMCORE_PATH) \
+	    $(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) 
+
 # LLVM LOCAL end
 
 # installhdrs does nothing, because the headers aren't useful until

Modified: llvm-gcc-4.2/trunk/build_gcc
URL: http://llvm.org/viewvc/llvm-project/llvm-gcc-4.2/trunk/build_gcc?rev=44140&r1=44139&r2=44140&view=diff

==============================================================================
--- llvm-gcc-4.2/trunk/build_gcc (original)
+++ llvm-gcc-4.2/trunk/build_gcc Wed Nov 14 16:11:08 2007
@@ -68,11 +68,18 @@
 # or not.
 ENABLE_LLVM="$7"
 
-# The eighth parameter is the version number of the submission, e.g. 1007.
-LLVM_GCC_SUBMIT_VERSION="$8"
+# The eighth parameter is a yes/no that indicates whether assertions should be
+# enabled in the LLVM libs/tools.
+LLVM_ASSERTIONS="$8"
 
-# The nineth parameter is the subversion number of the submission, e.g. 03.
-LLVM_GCC_SUBMIT_SUBVERSION="$9"
+# The nineth parameter indicates llvmCore location.
+LLVMCORE_PATH="$9"
+
+# The tenth parameter is the version number of the submission, e.g. 1007.
+LLVM_SUBMIT_VERSION="${10}"
+
+# The eleventh parameter is the subversion number of the submission, e.g. 03.
+LLVM_SUBMIT_SUBVERSION="${11}"
 
 # LLVM_BIN_DIR - This is the place where llvm-gcc/llvm-g++ symlinks get installed.
 LLVM_BIN_DIR=/Developer/usr/bin





More information about the llvm-commits mailing list