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
This commit is contained in:
Chris Lattner 2002-09-19 19:44:28 +00:00
parent 4512f33b10
commit 7f666ca429
2 changed files with 12 additions and 2 deletions

View 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

View 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