[llvm-commits] CVS: llvm-www/demo/index.cgi
Tanya Lattner
tonic at nondot.org
Wed May 23 12:13:30 PDT 2007
Changes in directory llvm-www/demo:
index.cgi updated: 1.71 -> 1.72
---
Log message:
Switch to llvm-ld
---
Diffs of the changes: (+5 -8)
index.cgi | 13 +++++--------
1 files changed, 5 insertions(+), 8 deletions(-)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.71 llvm-www/demo/index.cgi:1.72
--- llvm-www/demo/index.cgi:1.71 Wed May 23 14:07:31 2007
+++ llvm-www/demo/index.cgi Wed May 23 14:13:12 2007
@@ -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: 2007/05/23 19:07:31 $
+# Last modified $Date: 2007/05/23 19:13:12 $
#
use strict;
@@ -249,17 +249,14 @@
my $sanitycheckfail = '';
# insert tool-specific sanity checks here
- $sanitycheckfail .= ' gccas'
- if `gccas --help 2>&1` !~ /assembler for GCC/;
-
$sanitycheckfail .= ' llvm-dis'
if `llvm-dis --help 2>&1` !~ /ll disassembler/;
$sanitycheckfail .= ' llvm-gcc'
if ( `llvm-gcc --version 2>&1` !~ /Free Software Foundation/ );
- $sanitycheckfail .= ' gccld'
- if `gccld --help 2>&1` !~ /llvm linker for GCC/;
+ $sanitycheckfail .= ' llvm-ld'
+ if `llvm-ld --help 2>&1` !~ /llvm linker for GCC/;
$sanitycheckfail .= ' llvm-bcanalyzer'
if `llvm-bcanalyzer --help 2>&1` !~ /bcanalyzer/;
@@ -392,8 +389,8 @@
if ( $c->param('showstats') );
my $tmpFile = getname(".bc");
try_run(
- "optimizing linker (gccld)",
-"gccld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
+ "optimizing linker (llvm-ld)",
+"llvm-ld $stats -o=$tmpFile $bytecodeFile > $outputFile 2>&1",
$outputFile
);
system("mv $tmpFile.bc $bytecodeFile");
More information about the llvm-commits
mailing list