From 7f666ca42901bcf50273b8c05447837e0e940feb Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 19 Sep 2002 19:44:28 +0000 Subject: [PATCH] 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 --- Makefile.Linux | 7 ++++++- Makefile.SunOS | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Makefile.Linux b/Makefile.Linux index 2a3e4a6335e..39928d92346 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 9afae8a176c..2b4eeb314a1 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