├── .flake8rc ├── .gitignore ├── LICENSE ├── README.md ├── benchmark ├── install_all ├── install_c3c-latest ├── install_circle ├── install_csharp ├── install_csharp~ ├── install_dmd-stable ├── install_dotnet-sdk ├── install_gcc ├── install_golang ├── install_java ├── install_julia ├── install_llvm ├── install_mono ├── install_mono-mcs ├── install_nim ├── install_ocaml ├── install_python-packages ├── install_rust-nightly ├── install_scheme ├── install_swift ├── install_tcc ├── install_vlang-master ├── install_zig-master~ ├── install_zig@~master ├── libmain_0.rmeta └── process_timer.py /.flake8rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/.flake8rc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/benchmark -------------------------------------------------------------------------------- /install_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_all -------------------------------------------------------------------------------- /install_c3c-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_c3c-latest -------------------------------------------------------------------------------- /install_circle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_circle -------------------------------------------------------------------------------- /install_csharp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_csharp -------------------------------------------------------------------------------- /install_csharp~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_csharp~ -------------------------------------------------------------------------------- /install_dmd-stable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_dmd-stable -------------------------------------------------------------------------------- /install_dotnet-sdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_dotnet-sdk -------------------------------------------------------------------------------- /install_gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_gcc -------------------------------------------------------------------------------- /install_golang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_golang -------------------------------------------------------------------------------- /install_java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_java -------------------------------------------------------------------------------- /install_julia: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_julia -------------------------------------------------------------------------------- /install_llvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_llvm -------------------------------------------------------------------------------- /install_mono: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_mono -------------------------------------------------------------------------------- /install_mono-mcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_mono-mcs -------------------------------------------------------------------------------- /install_nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_nim -------------------------------------------------------------------------------- /install_ocaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_ocaml -------------------------------------------------------------------------------- /install_python-packages: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | sudo apt install python3-psutil 4 | -------------------------------------------------------------------------------- /install_rust-nightly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_rust-nightly -------------------------------------------------------------------------------- /install_scheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_scheme -------------------------------------------------------------------------------- /install_swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_swift -------------------------------------------------------------------------------- /install_tcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_tcc -------------------------------------------------------------------------------- /install_vlang-master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_vlang-master -------------------------------------------------------------------------------- /install_zig-master~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_zig-master~ -------------------------------------------------------------------------------- /install_zig@~master: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/install_zig@~master -------------------------------------------------------------------------------- /libmain_0.rmeta: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /process_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nordlow/compiler-benchmark/HEAD/process_timer.py --------------------------------------------------------------------------------