diff options
author | Alexey Shekhirin <a.shekhirin@gmail.com> | 2022-04-14 03:33:13 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-14 02:33:13 +0200 |
commit | 2001d1b65ebef08355d52159146a9f3513b26c0f (patch) | |
tree | f9c90b64be96edbdc9929503659b7d5076714ec5 /lib/compilers/_all.js | |
parent | 89894f3e6732c6aba1d1c240e9ae15cd235223a5 (diff) | |
download | compiler-explorer-2001d1b65ebef08355d52159146a9f3513b26c0f.tar.gz compiler-explorer-2001d1b65ebef08355d52159146a9f3513b26c0f.zip |
Add support for Solidity (#3507)gh-2350
* feat(compilers): Solidity support MVP
* don't concat userOptions in optionsForFilter
* fixes after review
* Update etc/config/solidity.defaults.properties
Co-authored-by: Rubén Rincón Blanco <ruben@rinconblanco.es>
Co-authored-by: Rubén Rincón Blanco <ruben@rinconblanco.es>
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 d587abc1a..d0484a31c 100644 --- a/lib/compilers/_all.js +++ b/lib/compilers/_all.js @@ -71,6 +71,7 @@ export { RustcCgGCCCompiler } from './rustc-cg-gcc'; export { MrustcCompiler } from './mrustc'; export { ScalaCompiler } from './scala'; export { SdccCompiler } from './sdcc'; +export { SolidityCompiler } from './solidity'; export { SPIRVCompiler } from './spirv'; export { SwiftCompiler } from './swift'; export { TenDRACompiler } from './tendra'; |