diff options
| author | Reid Spencer <rspencer@reidspencer.com> | 2004-12-22 05:57:09 +0000 |
|---|---|---|
| committer | Reid Spencer <rspencer@reidspencer.com> | 2004-12-22 05:57:09 +0000 |
| commit | 0921255067516810c6c1f2a9e46eb547292e38d0 (patch) | |
| tree | 0ef302a2cd4116c05b0a1ce5174c19a0f94cf506 /llvm | |
| parent | fd144e86553dbbf8ad1bf16f8b23a3de437f810f (diff) | |
| download | bcm5719-llvm-0921255067516810c6c1f2a9e46eb547292e38d0.tar.gz bcm5719-llvm-0921255067516810c6c1f2a9e46eb547292e38d0.zip | |
For PR432:
* Use new configuration variables to compute LLVMGCC and LLVMGXX variables.
llvm-svn: 19094
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/Makefile.config.in | 16 |
1 files changed, 9 insertions, 7 deletions
diff --git a/llvm/Makefile.config.in b/llvm/Makefile.config.in index 9f6215c5065..ee77f879c5d 100644 --- a/llvm/Makefile.config.in +++ b/llvm/Makefile.config.in @@ -94,22 +94,25 @@ ZIP := @ZIP@ # Paths to miscellaneous programs we assume are present RPWD := pwd ECHO := echo + +# Path to location for LLVM C/C++ front-end. You can modify this if you +# want to override the value set by configure. +LLVMGCCDIR := @LLVMGCCDIR@ + # Determine the target for which LLVM should generate code. LLVMGCCARCH := @target@/3.4-llvm # Full pathnames of LLVM C/C++ front-end 'cc1' and 'cc1plus' binaries: -LCC1 = @LLVMCC1@ -LCC1XX = @LLVMCC1PLUS@ +LLVMGCC := @LLVMGCC@ +LLVMGXX := @LLVMGXX@ +LLVMCC1 := @LLVMCC1@ +LLVMCC1PLUS := @LLVMCC1PLUS@ # 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 # object files. OBJ_ROOT := . -# Path to location for LLVM C/C++ front-end. You can modify this if you -# want to override the value set by configure. -LLVMGCCDIR := @LLVMGCCDIR@ - # These are options that can either be enabled here, or can be enabled on the # make command line (ie, make ENABLE_PROFILING=1): @@ -203,7 +206,6 @@ sysconfdir = @sysconfdir@ sharedstatedir = @sharedstatedir@ localstatedir = @localstatedir@ libdir = @libdir@ -cferuntime_libdir = $(LLVMGCCDIR)/lib includedir = @includedir@ infodir = @infodir@ mandir = @mandir@ |

