diff options
author | Patrick Quist <partouf@gmail.com> | 2021-01-02 16:10:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-02 16:10:05 +0100 |
commit | 50f68597309b0781d502329009d6e4b27e96e7ea (patch) | |
tree | ed22d6b078e3aa02b80c0eec459f0ed7222a2fed /lib/compilers/_all.js | |
parent | 4be742de7f348825658c46e57e98f0e93f2b205c (diff) | |
download | compiler-explorer-50f68597309b0781d502329009d6e4b27e96e7ea.tar.gz compiler-explorer-50f68597309b0781d502329009d6e4b27e96e7ea.zip |
TinyC support (#2365)
* minimal tinycc support
* dont pass -g by default + don't use binary mode on -E
* work around for trunk
* add tinycc trunk
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 3146c6fff..81ed7f279 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -61,3 +61,4 @@ export { Win32VcCompiler } from './win32-vc'; export { WineVcCompiler } from './wine-vc'; export { WslVcCompiler } from './wsl-vc'; export { ZigCompiler } from './zig'; +export { TinyCCompiler } from './tinyc'; |