[llvm-commits] CVS: llvm-www/demo/index.cgi

Chris Lattner lattner at cs.uiuc.edu
Mon May 9 15:31:37 PDT 2005



Changes in directory llvm-www/demo:

index.cgi updated: 1.44 -> 1.45
---
Log message:

fix a gccld warning


---
Diffs of the changes:  (+3 -3)

 index.cgi |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)


Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.44 llvm-www/demo/index.cgi:1.45
--- llvm-www/demo/index.cgi:1.44	Mon May  9 17:23:37 2005
+++ llvm-www/demo/index.cgi	Mon May  9 17:31:23 2005
@@ -5,7 +5,7 @@
 # doing remote web JO99C compilations.  (It could still be used for that
 # purpose, though the two scripts have diverged somewhat.)
 #
-# Last modified $Date: 2005/05/09 22:23:37 $
+# Last modified $Date: 2005/05/09 22:31:23 $
 #
 
 use strict;
@@ -26,7 +26,7 @@
 my $TIMEOUTAMOUNT   = 20;
 
 $ENV{'LD_LIBRARY_PATH'} = '/home/vadve/shared/localtools/fc1/lib/';
-$ENV{'LLVM_LIB_SEARCH_PATH'} = '/home/llvm/install/bytecode-libs';
+$ENV{'LLVM_LIB_SEARCH_PATH'} = '/home/vadve/gaeke/llvm/Release/runtime';
 my @PREPENDPATHDIRS =
   (  
     '/home/vadve/lattner/local/x86/llvm-gcc/bin/',
@@ -388,7 +388,7 @@
         my $tmpFile = getname(".bc");
         try_run(
             "optimizing linker (gccld)",
-"gccld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
+            "gccld -L $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
             $outputFile
         );
         system("mv $tmpFile.bc $bytecodeFile");






More information about the llvm-commits mailing list