summaryrefslogtreecommitdiff
path: root/Makefile.Linux
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-19 19:44:28 +0000
committerChris Lattner <sabre@nondot.org>2002-09-19 19:44:28 +0000
commit7f666ca42901bcf50273b8c05447837e0e940feb (patch)
tree10e91e3164fcd3524b5f2053f4e24d8e74a2393b /Makefile.Linux
parent4512f33b102d49704840acbde9acdf16bb0da6ed (diff)
downloadllvm-7f666ca42901bcf50273b8c05447837e0e940feb.tar.gz
llvm-7f666ca42901bcf50273b8c05447837e0e940feb.tar.bz2
llvm-7f666ca42901bcf50273b8c05447837e0e940feb.tar.xz
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
Diffstat (limited to 'Makefile.Linux')
-rw-r--r--Makefile.Linux7
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.Linux b/Makefile.Linux
index 2a3e4a6335..39928d9234 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