Remove the use of LLVMGCCARCH. Instead, query the compiler for the

location of libgcc.a; that will tell us the name of the directory to find
the libraries that we're looking for.

llvm-svn: 10903
This commit is contained in:
John Criswell 2004-01-16 21:53:23 +00:00
parent 60044e6f18
commit 3db2f0725d

View File

@ -34,11 +34,14 @@ endif
.PRECIOUS: Output/%.llvm.bc
.PRECIOUS: Output/%.llvm
# Find the location of the platform specific LLVM GCC libraries
LLVMGCCLIBDIR=$(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))
# LLVM Tool Definitions (LLVMGCC, LLVMGXX, LLVMAS are provided by Makefile.rules)
LLI = $(LLVMTOOLCURRENT)/lli
LLC = $(LLVMTOOLCURRENT)/llc
LGCCAS = $(LLVMTOOLCURRENT)/gccas
LGCCLD = $(LGCCLDPROG) -L$(LLVMGCCDIR)/lib/gcc/$(LLVMGCCARCH) -L$(LLVMGCCDIR)/lib
LGCCLD = $(LGCCLDPROG) -L$(LLVMGCCLIBDIR) -L$(LLVMGCCDIR)/lib
LDIS = $(LLVMTOOLCURRENT)/llvm-dis
LOPT = $(LLVMTOOLCURRENT)/opt
LLINK = $(LLVMTOOLCURRENT)/llvm-link