aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-05-29 19:16:55 +0000
committerChris Lattner <sabre@nondot.org>2003-05-29 19:16:55 +0000
commit5361c83ae9309463a52eb8ed5f4f74e95d4386ba (patch)
treeac04b9d371f5e87ecb43b7b0eb30e667854dc8b1
parent65aa593456364ed870d39d1d6c57dac5f407119d (diff)
Minor reordering of options
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6407 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile.config23
1 files changed, 12 insertions, 11 deletions
diff --git a/Makefile.config b/Makefile.config
index 9677aa738a..08e801965e 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -70,7 +70,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 +78,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
+