Platform specific makefiles specify where to find the GCC frontend for their
authorChris Lattner <sabre@nondot.org>
Thu, 19 Sep 2002 19:44:28 +0000 (19:44 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 19 Sep 2002 19:44:28 +0000 (19:44 +0000)
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

Makefile.Linux
Makefile.SunOS

index 2a3e4a6335ea350a02ec5673ea4a06302c7a2fe8..39928d92346bc7bde64b1a1cd24127cd8a74795f 100644 (file)
@@ -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
index 9afae8a176c34d8106e5f0a00e931c15e11f9fd8..2b4eeb314a1ce3d664f2c2b016ac13ba3044164a 100644 (file)
@@ -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