forked from OSchip/llvm-project
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. llvm-svn: 3830
This commit is contained in:
parent
b6504001f0
commit
81c8476242
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue