Remove obsolete support for LD_LIBRARY_PATH

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6815 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2003-06-20 23:01:23 +00:00
parent a2e89c6f38
commit b7009c6cae
3 changed files with 2 additions and 28 deletions

View File

@ -24,10 +24,10 @@ testsparc : $(OTESTS:%.ll=%.s)
testcbe : $(OTESTS:%.ll=%.tc)
Output/%.asmdis: % $(LAS) $(LDIS) Output/.dir
@./TestAsmDisasm.sh $< $(LLVMTOOLCURRENT) $(LLVMLIBCURRENTSOURCE)
@./TestAsmDisasm.sh $< $(LLVMTOOLCURRENT)
Output/%.opt: % $(LAS) $(LDIS) $(LOPT) Output/.dir
@./TestOptimizer.sh $< $(LLVMTOOLCURRENT) $(LLVMLIBCURRENTSOURCE)
@./TestOptimizer.sh $< $(LLVMTOOLCURRENT)
Output/%.tc: Output/%.bc $(LDIS)
@echo "======== Generating C code for $<"

View File

@ -4,19 +4,6 @@
rm -f test.bc.temp[12]
#
# Split the current LD_LIBRARY_PATH into two separate components.
#
FirstLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f1`
SecondLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f2`
#
# Now create a new LD_LIBRARY_PATH with our command line options as
# the first section.
#
LD_LIBRARY_PATH="$3:${FirstLDP}\;${SecondLDP}"
export LD_LIBRARY_PATH
AS=$2/as
DIS=$2/dis

View File

@ -1,18 +1,5 @@
#!/bin/sh
#
# Split the current LD_LIBRARY_PATH into two separate components.
#
FirstLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f1`
SecondLDP=`echo $LD_LIBRARY_PATH | cut -d\; -f2`
#
# Now create a new LD_LIBRARY_PATH with our command line options as
# the first section.
#
LD_LIBRARY_PATH="$3:${FirstLDP}\;${SecondLDP}"
export LD_LIBRARY_PATH
AS=$2/as
DIS=$2/dis
OPT=$2/opt