You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Matt Godbolt 979942a906 Fix concurrent compiles. Also configure 2 by default 9 years ago
.idea Add IDEA files. 9 years ago
c-preload Copyright update, formatting changes 9 years ago
d Copyright update, formatting changes 9 years ago
etc Fix concurrent compiles. Also configure 2 by default 9 years ago
examples Updated rust examples 9 years ago
lib Fix concurrent compiles. Also configure 2 by default 9 years ago
static Fix up error if compiler not found 9 years ago
test Copyright update, formatting changes 9 years ago
.gitignore Remove accidentally-added npm-updated file 11 years ago
.jshintrc Add IDEA files. 9 years ago
LICENSE Copyright update, formatting changes 9 years ago
Makefile Fix up makefile for 14.04 9 years ago
Notes.md Add IDEA files. 9 years ago
README.md Add IDEA files. 9 years ago
app.js First gasp at updating sample GCC explorer settings 9 years ago
package.json Much cleaner promise design 9 years ago

README.md

GCC Explorer

GCC Explorer is an interactive compiler. The left-hand pane shows editable C/C++ code. The right, the assembly output of having compiled the code with a given compiler and settings.

Try out the demo site!

Developing

GCC Explorer is written in node. Most of the heavy lifting is actually done on the client, which is arguably a bad decision.

Assuming you have npm and node installed, simply running make ought to get you up and running with a GCC explorer running on port 10240 on your local machine: http://localhost:10240

If you want to point it at your own GCC or similar binaries, either edit the etc/config/gcc-explorer.defaults.properties or else make a new one with the name gcc-explorer.YOURHOSTNAME.properties. The config system leaves a lot to be desired, I'm working on porting CCS to javascript and then something more rational can be used.

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