[llvm-commits] CVS: llvm/configure

Reid Spencer reid at x10sys.com
Fri May 13 11:30:24 PDT 2005



Changes in directory llvm:

configure updated: 1.182 -> 1.183
---
Log message:

Fix the "stacker doesn't build without llvm-gcc" problem. The configure
script was defaulting the LLVMGCC variable to "llvm-gcc" if it couldn't
find llvm-gcc and --with-llvmgccdir was not specified. In this case, there
is no llvm-gcc available on the system so we shouldn't assume that the
user's path will find it any better than configure could. The fix is to
default it to an empty string. If LLVMGCC is empty, the makefiles will
avoid building things that depend on llvm-gcc and give a nice warning 
message to that effect.


---
Diffs of the changes:  (+0 -2)

 configure |    2 --
 1 files changed, 2 deletions(-)


Index: llvm/configure
diff -u llvm/configure:1.182 llvm/configure:1.183
--- llvm/configure:1.182	Thu May 12 17:15:34 2005
+++ llvm/configure	Fri May 13 13:30:13 2005
@@ -24648,7 +24648,6 @@
 done
 done
 
-  test -z "$ac_cv_path_LLVMGCC" && ac_cv_path_LLVMGCC="llvm-gcc"
   ;;
 esac
 fi
@@ -24688,7 +24687,6 @@
 done
 done
 
-  test -z "$ac_cv_path_LLVMGXX" && ac_cv_path_LLVMGXX="llvm-g++"
   ;;
 esac
 fi






More information about the llvm-commits mailing list