Files
compiler-explorer/docs/AddingCustomCompilersOverview.md
Matt Godbolt f2c1e0bd31 The Grand Reformat (#3643)
* The Grand Reformat

- everything made prettier...literally
- some tweaks to include a few more files, including documentation
- minor changes to format style
- some tiny `// prettier-ignore` changes to keep a few things the way we like them
- a couple of super minor tweaks to embedded document types to ensure they format correctly
2022-05-09 23:13:50 -05:00

1.9 KiB

This is an overview of what building and adding a compiler to the site looks like, using GCC as an example, but note that the process is similar for all other types of compilers.

  • Build GCC versions with the relevant magic. We build all our own GCCs using Docker from this repo
  • For non-trunk builds we manually run the docker image. For trunk dailies we have a cron job that runs a script to build them.
  • Built tarballs are uploaded to S3, and installed by our custom tool from a YAML configuration file
  • The installation puts compilers on a shared NFS drive at /opt/compiler-explorer/gcc-some-version/
  • We then configure CE to look for the compiler here.
  • If we need to customise the way we execute the compiler and/or display the results, then we can change the "driver" for the compiler. Usually we can just override a few aspects of the driver, relying on the defaults from the base driver.
  • Any UI changes are a bit more work.

More info still in Adding a Compiler, and if you can bear listening to Matt, here's a talk about some behind the scenes stuff, with slides online.