summaryrefslogtreecommitdiff
path: root/Makefile.config.in
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2004-01-13 06:43:16 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2004-01-13 06:43:16 +0000
commit26be9c5350c9f4cbb3a959b02472264883c49412 (patch)
tree2e211f7a09113c4a22761249aab71ad26f830d4d /Makefile.config.in
parent19b6486d3891c8a02a301aa1b44348a420772fcf (diff)
downloadllvm-26be9c5350c9f4cbb3a959b02472264883c49412.tar.gz
llvm-26be9c5350c9f4cbb3a959b02472264883c49412.tar.bz2
llvm-26be9c5350c9f4cbb3a959b02472264883c49412.tar.xz
Remove and/or shorten many comments in configure.ac.
Remove checks for many common Unix programs. Our build process currently assumes they are there and makes no provisions for any other world-views. (We can add some of these checks back at some later time if it should prove useful, but right now, we do not need to check to see whether "rm" exists.) Remove checks for many common standard C headers and functions. We assume ISO/ANSI C++, and we always use the <cfoo> versions of ANSI C's <foo.h> headers, so these checks will not help anything. Edit configure's warning messages for clarity and content. Change checks for "optional" programs to default to using "true" instead of "false", so that a failure to find, e.g., etags, will be less likely to result in make failing. No longer shall we check for --enable-purify or --with-purify options. No longer shall we propagate these to the Makefiles. configure regenerated using autoconf-2.57. Please feel free to send me any questions or comments you have. :-) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10814 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile.config.in')
-rw-r--r--Makefile.config.in23
1 files changed, 6 insertions, 17 deletions
diff --git a/Makefile.config.in b/Makefile.config.in
index 34820fdef2..a461a280d2 100644
--- a/Makefile.config.in
+++ b/Makefile.config.in
@@ -65,13 +65,13 @@ FLEX = @LEX@
#
# Paths to miscellaneous programs.
#
-RPWD = @RPWD@
-SED = @SED@
-RM = @RM@
-ECHO = @ECHO@
+RPWD = pwd
+SED = sed
+RM = rm
+ECHO = echo
MKDIR = @abs_top_srcdir@/autoconf/mkinstalldirs
-DATE = @DATE@
-MV = @MV@
+DATE = date
+MV = mv
INSTALL = @INSTALL@
DOT = @DOT@
ETAGS = @ETAGS@
@@ -109,11 +109,6 @@ LLVMGCCDIR := @LLVMGCCDIR@
#
BYTECODE_REPOSITORY := @BCR@
-# Path to location for purify, this is only needed if you build with
-# ENABLE_PURIFY=1
-#
-PURIFY = @PURIFY@
-
#
# SPEC benchmarks:
# Set the USE_SPEC variable to enable the use of the SPEC benchmarks.
@@ -155,12 +150,6 @@ PAPIDIR := @PAPIDIR@
#
#VERBOSE = 1
-# When ENABLE_PURIFY is set to 1, the LLVM tools are linked with purify (which
-# must be locally installed) to allow for some automated memory error debugging.
-#
-#ENABLE_PURIFY = 1
-@ENABLE_PURIFY@
-
#
# Enable JIT for this platform
#