diff options
| author | Chris Lattner <sabre@nondot.org> | 2002-09-19 19:44:28 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2002-09-19 19:44:28 +0000 |
| commit | 7f666ca42901bcf50273b8c05447837e0e940feb (patch) | |
| tree | 10e91e3164fcd3524b5f2053f4e24d8e74a2393b | |
| parent | 4512f33b102d49704840acbde9acdf16bb0da6ed (diff) | |
| download | external_llvm-7f666ca42901bcf50273b8c05447837e0e940feb.zip external_llvm-7f666ca42901bcf50273b8c05447837e0e940feb.tar.gz external_llvm-7f666ca42901bcf50273b8c05447837e0e940feb.tar.bz2 | |
Platform specific makefiles specify where to find the GCC frontend for their
architecture. The location of the GCC frontend may be overridden by the
Makefile.config file.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3830 91177308-0d34-0410-b5e6-96231b3b80d8
| -rw-r--r-- | Makefile.Linux | 7 | ||||
| -rw-r--r-- | Makefile.SunOS | 7 |
2 files changed, 12 insertions, 2 deletions
diff --git a/Makefile.Linux b/Makefile.Linux index 2a3e4a6..39928d9 100644 --- a/Makefile.Linux +++ b/Makefile.Linux @@ -15,4 +15,9 @@ MakeSharedObjectOption := -shared # ExportSymbols := -Wl,--export-dynamic - +# Path to location for LLVM front-end for this architecture. This setting may +# be overriden by the Makefile.config option, and should not override it if set. +# +ifndef LLVMGCCDIR +LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install_x86 +endif diff --git a/Makefile.SunOS b/Makefile.SunOS index 9afae8a..2b4eeb3 100644 --- a/Makefile.SunOS +++ b/Makefile.SunOS @@ -15,4 +15,9 @@ MakeSharedObjectOption := -G # ExportSymbols := - +# Path to location for LLVM front-end for this architecture. This setting may +# be overriden by the Makefile.config option, and should not override it if set. +# +ifndef LLVMGCCDIR +LLVMGCCDIR := /home/vadve/lattner/cvs/gcc_install +endif |
