Remove stupid thinko that was preventing bugpoint from working
[oota-llvm.git] / Makefile.config
index 9677aa738af4aa1bd7a97fbb6fa44ed1e1e0dda3..d47fe95e8eb138c7644549af31dd4f2f9f462052 100644 (file)
@@ -18,6 +18,16 @@ CXX = PATH=/usr/bin /usr/dcs/software/evaluation/bin/g++
 #
 CC := PATH=/usr/bin /usr/dcs/software/evaluation/bin/gcc
 
+#
+# Path to the linker.
+#
+LD = ld
+
+#
+# Path to the archiver program.
+#
+AR_PATH = ar
+
 #
 # The pathnames of the Flex and Bison programs, respectively.
 #
@@ -70,7 +80,7 @@ USE_SPEC := 1
 SPEC_ROOT := /home/vadve/shared/benchmarks/speccpu2000/benchspec
 
 #
-# Path to the PAPI code.
+# Path to the PAPI code.  This is used by the reoptimizer only.
 #
 PAPIDIR := /home/vadve/shared/papi-2.3.4.1
 
@@ -78,23 +88,24 @@ PAPIDIR := /home/vadve/shared/papi-2.3.4.1
 # make command line (ie, make ENABLE_PROFILING=1)
 #
 
-# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
-# information to allow gprof to be used to get execution frequencies.
-#
-#ENABLE_PROFILING = 1
-
-# When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
-# must be locally installed) to allow for some automated memory error debugging.
-#
-#ENABLE_PURIFY    = 1
-
 # When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are
 # turned on, and Debug builds are turned off.
 #
 #ENABLE_OPTIMIZED = 1
 
+# When ENABLE_PROFILING is enabled, the llvm source base is built with profile
+# information to allow gprof to be used to get execution frequencies.
+#
+#ENABLE_PROFILING = 1
+
 #
 # This open tells the Makefiles to produce verbose output.
 # It essentially prints the commands that make is executing
 #
 #VERBOSE = 1
+
+# When ENABLE_PURIFY is enabled, the LLVM tools are linked with purify (which
+# must be locally installed) to allow for some automated memory error debugging.
+#
+#ENABLE_PURIFY    = 1
+