All Projects → compiler-explorer → Compiler Explorer

compiler-explorer / Compiler Explorer

Licence: other
Run compilers interactively from your web browser and interact with the assembly

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects
Pug
443 projects
python
139335 projects - #7 most used programming language
SCSS
7915 projects
HTML
75241 projects

Projects that are alternatives of or similar to Compiler Explorer

Ispc
Intel SPMD Program Compiler
Stars: ✭ 1,924 (-80.46%)
Mutual labels:  compiler, ispc
Angle
⦠ Angle: new speakable syntax for python 💡
Stars: ✭ 61 (-99.38%)
Mutual labels:  compiler
Manticore
Parallel ML compiler
Stars: ✭ 52 (-99.47%)
Mutual labels:  compiler
Tachyon
Experimental Programming Language Coded in Python!
Stars: ✭ 58 (-99.41%)
Mutual labels:  compiler
Fast ber
A C++11 ASN.1 BER Encoding and Decoding Library
Stars: ✭ 54 (-99.45%)
Mutual labels:  compiler
Arocc
A C compiler written in Zig.
Stars: ✭ 59 (-99.4%)
Mutual labels:  compiler
Ikea Sharp
📦The new groundbreaking programming language
Stars: ✭ 52 (-99.47%)
Mutual labels:  compiler
Charly Vm
Fibers, Closures, C-Module System | NaN-boxing, bytecode-VM written in C++
Stars: ✭ 66 (-99.33%)
Mutual labels:  compiler
Flashforth
FlashForth development
Stars: ✭ 60 (-99.39%)
Mutual labels:  compiler
Idris Elixir
A code-generator for Idris that targets Elixir
Stars: ✭ 56 (-99.43%)
Mutual labels:  compiler
Jhc Components
JHC Haskell compiler split into reusable components
Stars: ✭ 55 (-99.44%)
Mutual labels:  compiler
Mir
A light-weight JIT compiler based on MIR (Medium Internal Representation)
Stars: ✭ 1,075 (-89.08%)
Mutual labels:  compiler
Xc Basic
A compiling BASIC dialect for the Commodore-64
Stars: ✭ 59 (-99.4%)
Mutual labels:  compiler
Cva
从0实现一个JVM语言Cva及教程, 目前实现编译器;
Stars: ✭ 54 (-99.45%)
Mutual labels:  compiler
Ccache
ccache – a fast compiler cache
Stars: ✭ 1,128 (-88.54%)
Mutual labels:  compiler
8cc.go
C compiler written in Go
Stars: ✭ 52 (-99.47%)
Mutual labels:  compiler
Elchemy
Write Elixir code using statically-typed Elm-like syntax (compatible with Elm tooling)
Stars: ✭ 1,080 (-89.03%)
Mutual labels:  compiler
Tiny Lisp
A tiny lisp compiler written in JS
Stars: ✭ 58 (-99.41%)
Mutual labels:  compiler
Shaderconductor
ShaderConductor is a tool designed for cross-compiling HLSL to other shading languages
Stars: ✭ 1,146 (-88.36%)
Mutual labels:  compiler
Certicoq
A Verified Compiler for Gallina, Written in Gallina
Stars: ✭ 66 (-99.33%)
Mutual labels:  compiler

Build Status codecov

Compiler Explorer

Compiler Explorer

Compiler Explorer is an interactive compiler exploration website. Edit code in C, C++, Rust, Go, D, Haskell, Swift, Pascal, ispc, Python, Java or in any of the other 31 supported languages, and see how that code looks after being compiled in real time. Multiple compilers are supported for each language, many different tools and visualisations are available, and the UI layout is configurable (thanks to GoldenLayout).

Try out at godbolt.org, or run your own local instance.

Compiler Explorer follows a Code of Conduct which aims to foster an open and welcoming environment.

Compiler Explorer was started in 2012 to show how C++ constructs translated to assembly code. It started out as a tmux session with vi running in one pane and watch gcc -S foo.cc -o - running in the other.

Since then, it has become a public website serving around 2,250,000 compilations per week.

You can financially support this project on Patreon, GitHub, Paypal, or by buying cool gear on the Compiler Explorer store.

Using Compiler Explorer

FAQ

There is now a FAQ section in the repository wiki. If your question is not present, please contact us as described below, so we can help you. If you find that the FAQ is lacking some important point, please free to contribute to it and/or ask us to clarify it.

Videos

There are a number of videos that showcase some features of Compiler Explorer:

A Road map is available which gives a little insight into the future plans for Compiler Explorer.

Developing

Compiler Explorer is written in Node.js.

Assuming you have a compatible version of node installed, on Linux simply running make ought to get you up and running with an Explorer running on port 10240 on your local machine: http://localhost:10240/. If this doesn't work for you, please contact us, as we consider it important you can quickly and easily get running. Currently, Compiler Explorer requires node 14 (LTS version) installed, either on the path or at NODE_DIR (an environment variable or make parameter).

Running with make EXTRA_ARGS='--language LANG' will allow you to load LANG exclusively, where LANG is one for the language ids/aliases defined in lib/languages.js. For example, to only run Compiler Explorer with C++ support, you'd run make EXTRA_ARGS='--language c++'. The Makefile will automatically install all the third party libraries needed to run; using npm to install server-side and client side components.

For development, we suggest using make dev to enable some useful features, such as automatic reloading on file changes and shorter startup times.

You can also use npm run dev to run if make dev doesn't work on your machine.

Some languages need extra tools to demangle them, e.g. rust, d, or haskell. Such tools are kept separately in the tools repo.

Configuring compiler explorer is achieved via configuration files in the etc/config directory. Values are key=value. Options in a {type}.local.properties file (where {type} is c++ or similar) override anything in the {type}.defaults.properties file. There is a .gitignore file to ignore *.local.* files, so these won't be checked into git, and you won't find yourself fighting with updated versions when you git pull. For more information see Adding a Compiler.

Check CONTRIBUTING.md for detailed information about how you can contribute to Compiler Explorer, and the docs folder for specific details regarding various things you might want to do, such as how to add new compilers or languages to the site.

Running a local instance

If you want to point it at your own GCC or similar binaries, either edit the etc/config/LANG.defaults.properties or else make a new one with the name LANG.local.properties, substituting LANG as needed. *.local.properties files have the highest priority when loading properties.

When running in a corporate setting the URL shortening service can be replaced by an internal one if the default storage driver isn't appropriate for your environment. To do this, add a new module in lib/shortener/myservice.js and set the urlShortenService variable in configuration. This module should export a single function, see the tinyurl module for an example.

RESTful API

There's a simple restful API that can be used to do compiles to asm and to list compilers.

You can find the API documentation here.

Contact us

We run a Compiler Explorer Discord, which is a place to discuss using or developing Compiler Explorer. We also have a presence on the cpplang Slack channel #compiler_explorer and we have a public mailing list.

There's a development channel on the discord, and also a development mailing list.

Feel free to raise an issue on github or email Matt directly for more help.

Credits

Compiler Explorer is maintained by the awesome people listed in the AUTHORS file.

We would like to thank the contributors listed in the CONTRIBUTORS file, who have helped shape Compiler Explorer.

We would also like to specially thank these people for their contributions to Compiler Explorer:

A number of amazing sponsors, both individuals and companies, have helped fund and promote Compiler Explorer.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].