Compiler settings
Intel(R) Xeon(R) CPU E5–2660 @ 2.20GHz, 20480KB cache, virtualized on single core, 4GB RAM, run on Linux
Programming language | Compilation | Start |
---|---|---|
Delphi (2.4.4) | fpc file -Sd -o executable_file | executable_file |
Free Pascal (2.4.4) | fpc file -o executable_file | executable_file |
GNU c++ (4.9) | g++ -O2 -fno-stack-limit -x c++ file -o executable_file | executable_file |
GNU c++ 11 (4.9) | g++ -O2 -fno-stack-limit -std=c++11 -x c++ file -o executable_file | executable_file |
GNU c (4.9) | gcc -O2 -fno-stack-limit -std=c99 -x c file -lm -o executable_file | executable_file |
Python 2.7 | py_compile.compile(file, doraise=True) | python2.7 file |
Python 3.2 | py_compile.compile(file, doraise=True) | python3.2 file |
Java 7 | javac file /usr/local/java7/bin/jar cvfe jar_file classname *.class | java -Xmx1024M -Xss1024M -jar |
Java 6 | javac file jar cvfe jar_file classname *.class | java -Xmx1024M -Xss1024M -jar |
Mono C# 2.10.8.1 | mcs -optimize -o file | mono executable_file |