Remove obsolete support for LD_LIBRARY_PATH
authorChris Lattner <sabre@nondot.org>
Fri, 20 Jun 2003 23:01:23 +0000 (23:01 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 20 Jun 2003 23:01:23 +0000 (23:01 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6815 91177308-0d34-0410-b5e6-96231b3b80d8

test/Feature/Makefile
test/Feature/TestAsmDisasm.sh
test/Feature/TestOptimizer.sh

index 1b131acc89d3cc8a8da92ff53287a2f85fb306e3..b0eeab8b12623069bbc8a006eec6d611de3483c7 100644 (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 $<"
index a492f8f305be9ec683667c197a6acac335aaaeb4..7ef09e67a8c1d4e52124dcbafd80ca1d10e0fa95 100755 (executable)
@@ -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
 
index 10008ee11136ab894f90ebcd27f8b535af045ffb..6816169a1d4383ea1f1383df5a279aca428c469e 100755 (executable)
@@ -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