
Το βρήκα εδώ!
Είναι benchmarks σε Gentoo σύστημα οπού βάζεις πολλαπλασιαστές δεξιά σχετικά με αυτά στα οποία θέλεις να είναι καλός ένας compiler και σου βγάζει αποτελέσματα.. Τα αποτελέσματα είναι από σύστημα με P4 CPU

Οι κορυφαίες overall γλώσσες/compilers C (gcc) , C++ (g++) ενώ η Pascal (Free Pascal





Μούχαχα!
Python , PHP , Java , C# (Mono) σέρνονται κάπου στην μέση..
Λέει πάνω πάνω
Can you manipulate the multipliers and weights to make your favourite language the fastest programming language in the Shootout?

Επίσης στο startup test η java κάνει 36.22 secs για να εκτελέσει το εξής
Code: Select all
public class hello {
public static void main(String args[]) {
System.out.print("hello world\n");
}
}
Και να το καλέσει
repeat %A /opt/sun-jdk-1.6.0/bin/java $JDKFLAGS -server -classpath hello.java_run hello
Ενώ η C (GCC) 0.39 secs
Code: Select all
int main() {
fputs("hello world\n", stdout);
return(0);
}
Και να το καλέσει
repeat %A hello.gcc_run
Code: Select all
program hello;
begin
WriteLn('hello world');
end.
Και να το καλέσει
repeat %A hello.fpascal_run