diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2021-07-20 05:24:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-19 22:24:46 -0500 |
commit | 040115eaf5007798619fe6f95c20dfa534a7616c (patch) | |
tree | 409da0689f87a7350ca85cc15c5b4a869184be13 /lib/compilers/_all.js | |
parent | 9a07e4004894b81f1d44415972e2fefa1e72da33 (diff) | |
download | compiler-explorer-040115eaf5007798619fe6f95c20dfa534a7616c.tar.gz compiler-explorer-040115eaf5007798619fe6f95c20dfa534a7616c.zip |
Support cproc C11 compiler (#2787)
Add support for cproc C11 compiler.
cproc is a lightweight compiler using the QBE backend.
Fixes #2755
Diffstat (limited to 'lib/compilers/_all.js')
-rw-r--r-- | lib/compilers/_all.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/_all.js b/lib/compilers/_all.js index 43b02a121..53cb7669c 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -31,6 +31,7 @@ export { ClangCompiler } from './clang'; export { ClangCudaCompiler } from './clang'; export { ClangHipCompiler } from './clang'; export { CleanCompiler } from './clean'; +export { CprocCompiler } from './cproc'; export { CrystalCompiler } from './crystal'; export { DefaultCompiler } from './default'; export { DMDCompiler } from './dmd'; |