Compiler settings

Intel(R) Xeon(R) CPU E5-2660 @ 2.20GHz, 20480KB cache, virtualizаtion on 1 core, 4GB RAM, GNU/Linux

Compiler Compilation Run
C# (MS .NET 6.0 + ASP) dotnet publish . --configuration Release --output build dotnet exec build/dotnet_app.dll
Clang 17.0.1 C++20 clang++ -std=c++20 -O2 -lm -x c++ source.cpp -o executable ./executable
Dart 3.2 dart compile exe source.dart -o executable ./executable
Delphi (FPC 3.2.2) fpc -O2 -Sd source.dpr -o executable ./executable
Free Basic 1.04 fbc -O 2 -x executable -lang qb source.bas ./executable
Free Pascal 3.2.2 fpc -O2 source.pas -o executable ./executable
GNU bash 5.0.17 bash source.sh
GNU CCC 13.1 C++20 g++ -O2 -lm -fno-stack-limit -std=c++20 -x c++ source.cpp -o executable ./executable
GNU GCC 13.1 C17 gcc -lm -O2 -fno-stack-limit -std=c17 -x c source.c -oexecutable ./executable
Golang 1.21.0 go build -o executable -compiler gc source.go ./executable
Haskell 7.10.2 ghc --make -O source.hs -o executable ./executable
Java 21.0.1 (Temurin JDK) javac source.java; jar cvfe executable.jar ClassName *.class java -Dsource.encoding=UTF8 -Xmx2048M -Xss1024M -jar executable.jar
Kotlin 1.9.21 (JRE 21) kotlinc source.kt -include-runtime -d executable.jar java -Dsource.encoding=UTF8 -Xmx2048M -Xss1024M -jar executable.jar
kumir 2.1.0-rc9 kumir2-llvmc -e=utf8 -o=executable source.kum ./executable
Lua 5.4 lua source.lua
Mono C# 5.2.0 dmcs -sdk:4 -r:System.Numerics -optimize source.cs -out:executable mono executable
Node.js 20.10.0 node source.js
ocaml 4.02.3 ocamlopt nums.cmxa str.cmxa -unsafe -o executable source.ml ./executable
PascalABC.NET 3.9.0 mono pabcnetcclear.exe source.pas ./executable
Perl 5.14 perl -c source.pl perl source.pl
PHP 8.1 php8.1 -l source.php php8.1 source.php
Python 3.12.1 python3 -c 'import py_compile; py_compile.compile("source.py", doraise=True)' python3 -S source.py
Python 3.9 (PyPy 7.3.11) pypy3 -c 'import py_compile; py_compile.compile("source.py", doraise=True)' pypy3 source.py
R 3.6.3 Rscript source.py
Rust 1.74.1 rustc -O -o executable source.rs ./executable
Scala 2.13.4 scalac source.scala -d executable.jar java -Dsource.encoding=UTF8 -Xmx2048M -Xss1024M -jar executable.jar
Swift 5.9.2 swiftc -O -o executable source.swift ./executable