-
Servers
ID 当前状态 系统信息 CPU信息 内存信息 Handled requests 69e1ff46 2026-9-10 7:02:56 Ubuntu 22.04.5 LTS jammy x64 Intel Xeon® Platinum@0GHz 1.4 GiB/1.6 GiB 0 -
Compiler Versions
bash
GNU bash, version 5.3.9(1)-release (x86_64-pc-linux-gnu) Copyright (C) 2025 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> This is free software; you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.c
gcc (GCC) 15.2.0 Copyright (C) 2025 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.cc, cc.cc98, cc.cc98o2, cc.cc11, cc.cc11o2, cc.cc14, cc.cc14o2, cc.cc17, cc.cc17o2, cc.cc20, cc.cc20o2, cc.noi, cc.noio2
g++ (GCC) 15.2.0 Copyright (C) 2025 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.pas
execve: start: /usr/bin/fpc: execve: no such file or directoryjava
execve: start: /usr/bin/javac: execve: no such file or directorykt.jvm
execve: start: /usr/bin/kotlinc: execve: no such file or directorypy.py3
Python 3.13.11py.pypy3
execve: start: /usr/bin/pypy3: execve: no such file or directoryphp
execve: start: /usr/bin/php: execve: no such file or directoryrs
execve: start: /usr/bin/rustc: execve: no such file or directoryhs
execve: start: /usr/bin/ghc: execve: no such file or directoryjs
v24.13.0go
execve: start: /usr/bin/go: execve: no such file or directoryrb
execve: start: /usr/bin/ruby: execve: no such file or directorycs
execve: start: /usr/bin/mcs: execve: no such file or directorymio
mio version 3.7 Copyright (c) 2026 mioLanguage MIT License Usage: /mio/bin/mioc <input...> [-o <output>] [-I <include_path>] [-D <macro>[=<value>]] [-S] [-c] [-O<0|1|2|3>] [--release] Mio compiler - compiles Mio source to native code Input files can be: .mio (source),.ll (LLVM IR),.s (assembly),.o (object) -o <file> specify output file (.ll/.s/.o/.exe or no extension) -S emit assembly (.s) instead of executable -c compile only,emit object file (.o) instead of executable -I <path> add include path for .mio file resolution -D <macro> define a macro (e.g. -D DEBUG or -D VERSION=2) -O0 no optimization -O1 basic optimization -O2 standard optimization (default for --release) -O3 aggressive optimization --release release mode (enables -O2 and caching) -l <lib> link with library (e.g. -lstdmio -lm). default: -lstdmio -lm -static link statically (no DLL dependencies) -
Compile Commands
- Bash(bash)
/bin/bash foo.sh
- C(c)
/usr/bin/gcc -Wall --std=c99 -o foo foo.c -lm
- C++(cc)
/usr/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -I/include
- C++98(cc.cc98)
/usr/bin/g++ -Wall -std=c++98 -o foo foo.cc -lm -I/include
- C++98(O2)(cc.cc98o2)
/usr/bin/g++ -Wall -std=c++98 -o foo foo.cc -lm -O2 -I/include
- C++11(cc.cc11)
/usr/bin/g++ -Wall -std=c++11 -o foo foo.cc -lm -I/include
- C++11(O2)(cc.cc11o2)
/usr/bin/g++ -Wall -std=c++11 -o foo foo.cc -lm -O2 -I/include
- C++14(cc.cc14)
/usr/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -I/include
- C++14(O2)(cc.cc14o2)
/usr/bin/g++ -Wall -std=c++14 -o foo foo.cc -lm -O2 -I/include
- C++17(cc.cc17)
/usr/bin/g++ -Wall -std=c++17 -o foo foo.cc -lm -I/include
- C++17(O2)(cc.cc17o2)
/usr/bin/g++ -Wall -std=c++17 -o foo foo.cc -lm -O2 -I/include
- C++20(cc.cc20)
/usr/bin/g++ -Wall -std=c++20 -o foo foo.cc -lm -I/include
- C++20(O2)(cc.cc20o2)
/usr/bin/g++ -Wall -std=c++20 -o foo foo.cc -lm -O2 -I/include
- Pascal(pas)
/usr/bin/fpc -O2 -o/w/foo foo.pas
- Java(java)
/usr/bin/bash -c "javac -d /w -encoding utf8 ./Main.java && jar cvf Main.jar *.class >/dev/null"
- Kotlin(kt)
echo "Invalid language selection"
- Kotlin/JVM(kt.jvm)
kotlinc -include-runtime -d foo.jar foo.kt
- Python(py)
/usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)" - Python 2(py.py2)
/usr/bin/python -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)" - Python 3(py.py3)
/usr/bin/python3 -c "import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)" - PyPy3(py.pypy3)
/bin/bash -c "/usr/bin/pypy3 -c \"import py_compile; py_compile.compile('/w/foo.py', '/w/foo', doraise=True)\" && mv foo.py foo" - PHP(php)
/usr/bin/php foo.php
- Rust(rs)
/usr/bin/rustc -O -o /w/foo /w/foo.rs
- Haskell(hs)
/usr/bin/ghc -O -outputdir /tmp -o foo foo.hs
- NodeJS(js)
/usr/bin/node /w/foo.js
- Golang(go)
/usr/bin/go build -o foo foo.go
- Ruby(rb)
/usr/bin/ruby foo.rb
- C#(cs)
/usr/bin/mcs -optimize+ -out:/w/foo /w/foo.cs
- R(r)
/bin/sh -c "cat /dev/stdin >stdin && /usr/bin/Rscript --vanilla foo.r"
- mio(mio)
/mio/bin/mioc foo.mio -o foo
- Bash(bash)