[llvm-commits] CVS: llvm-www/demo/index.cgi
Brian Gaeke
gaeke at cs.uiuc.edu
Thu Nov 20 18:57:01 PST 2003
Changes in directory llvm-www/demo:
index.cgi updated: 1.14 -> 1.15
---
Log message:
pretty names for tools.
---
Diffs of the changes: (+3 -3)
Index: llvm-www/demo/index.cgi
diff -u llvm-www/demo/index.cgi:1.14 llvm-www/demo/index.cgi:1.15
--- llvm-www/demo/index.cgi:1.14 Thu Nov 20 18:54:40 2003
+++ llvm-www/demo/index.cgi Thu Nov 20 18:56:04 2003
@@ -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: 2003/11/21 00:54:40 $
+# Last modified $Date: 2003/11/21 00:56:04 $
#
use CGI;
@@ -285,7 +285,7 @@
my $stats = '';
$stats = '-Wa,--stats,--time-passes' if ($c->param('showstats'));
- try_run( "llvm-gcc",
+ try_run( "llvm C/C++ front-end (llvm-gcc)",
"llvm-gcc $stats -o $bytecodeFile -c $inputFile > $outputFile 2>&1",
$outputFile );
@@ -295,7 +295,7 @@
$stats = '--stats --time-passes' if ($c->param('showstats'));
print " Running link-time optimizer.\n";
my $tmpFile = getname(".bc");
- try_run("gccld", "gccld $stats --link-as-library -o=$tmpFile $bytecodeFile 2>&1 > $outputFile", $outputFile );
+ try_run("link-time optimizer (gccld)", "gccld $stats --link-as-library -o=$tmpFile $bytecodeFile 2>&1 > $outputFile", $outputFile );
system("mv $tmpFile $bytecodeFile");
}
More information about the llvm-commits
mailing list