diff options
author | Rubén Rincón Blanco <ruben@rinconblanco.es> | 2021-04-30 16:36:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-30 16:36:54 +0200 |
commit | a330cd97f92495ddac6f3282eabfa5bcd0c2981e (patch) | |
tree | d1ea93ce9dbf325c8c352c103682eed23854a727 /lib/compilers/_all.js | |
parent | 6708b0c6a66314449294a42e5007ac50bf92f39b (diff) | |
download | compiler-explorer-a330cd97f92495ddac6f3282eabfa5bcd0c2981e.tar.gz compiler-explorer-a330cd97f92495ddac6f3282eabfa5bcd0c2981e.zip |
Add Zig cc as a C compiler (#2434)
* Add Zig cc as a C compiler
This commit is currently untested - I have no way to do it locally
(Even though installing Zig is awesomely simple!), so it might be
pretty broken
Releated issue: #2427
* Move cc to options field
This way fstat works
* attempt at fixing zigcc
* force zig > 0.6 to compile to binary as workaround
Co-authored-by: partouf <partouf@gmail.com>
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 e8ea354a2..5422cd2a1 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -63,3 +63,4 @@ export { WineVcCompiler } from './wine-vc'; export { WslVcCompiler } from './wsl-vc'; export { ZigCompiler } from './zig'; export { TinyCCompiler } from './tinyc'; +export { ZigCC } from './zigcc'; |