X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=Makefile.config.in;h=47d0d81cbf1d8a5276d8e8f0eab0d123b5433d12;hb=4b37e87ab9e7bfad8b87115278ca589f8d49ba26;hp=074bd05cdebf52c05b426223b344437f5b5d1294;hpb=5a870448d12a786098e9ec5018cd2bb3f5f673fd;p=oota-llvm.git diff --git a/Makefile.config.in b/Makefile.config.in index 074bd05cdeb..47d0d81cbf1 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -137,6 +137,7 @@ TAR := @TAR@ YACC := @YACC@ # Paths to miscellaneous programs we hope are present but might not be +PERL := @PERL@ BZIP2 := @BZIP2@ DOT := @DOT@ DOXYGEN := @DOXYGEN@ @@ -150,6 +151,8 @@ RUNTEST := @RUNTEST@ TCLSH := @TCLSH@ ZIP := @ZIP@ +HAVE_PERL := @HAVE_PERL@ + LIBS := @LIBS@ # Path to location for LLVM C/C++ front-end. You can modify this if you @@ -164,6 +167,8 @@ LLVMGCC := @LLVMGCC@ LLVMGXX := @LLVMGXX@ LLVMCC1 := @LLVMCC1@ LLVMCC1PLUS := @LLVMCC1PLUS@ +LLVMGCC_VERSION := @LLVMGCC_VERSION@ +LLVMGCC_MAJVERS := @LLVMGCC_MAJVERS@ # Path to directory where object files should be stored during a build. # Set OBJ_ROOT to "." if you do not want to use a separate place for @@ -173,11 +178,22 @@ OBJ_ROOT := . # These are options that can either be enabled here, or can be enabled on the # make command line (ie, make ENABLE_PROFILING=1): -# When ENABLE_OPTIMIZED is enabled, Release builds of all of the LLVM code are -# turned on, and Debug builds are turned off. +# When ENABLE_OPTIMIZED is enabled, LLVM code is optimized and output is put +# into the "Release" directories. Otherwise, LLVM code is not optimized and +# output is put in the "Debug" directories. #ENABLE_OPTIMIZED = 1 @ENABLE_OPTIMIZED@ +# When DISABLE_ASSERTIONS is enabled, builds of all of the LLVM code will +# exclude assertion checks, otherwise they are included. +#DISABLE_ASSERTIONS = 1 +@DISABLE_ASSERTIONS@ + +# When DEBUG_RUNTIME is enabled, the runtime libraries will retain debug +# symbols. +#DEBUG_RUNTIME = 1 +@DEBUG_RUNTIME@ + # 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 @@ -190,7 +206,7 @@ ENABLE_DOXYGEN = @ENABLE_DOXYGEN@ #VERBOSE = 1 # Enable JIT for this platform -@JIT@ +TARGET_HAS_JIT = @TARGET_HAS_JIT@ # Shared library extension for this platform. SHLIBEXT = @SHLIBEXT@