mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
113 lines
5.0 KiB
TypeScript
113 lines
5.0 KiB
TypeScript
// Copyright (c) 2021, Compiler Explorer Authors
|
|
// All rights reserved.
|
|
//
|
|
// Redistribution and use in source and binary forms, with or without
|
|
// modification, are permitted provided that the following conditions are met:
|
|
//
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
// this list of conditions and the following disclaimer.
|
|
// * Redistributions in binary form must reproduce the above copyright
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
// documentation and/or other materials provided with the distribution.
|
|
//
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
export {AdaCompiler} from './ada.js';
|
|
export {AnalysisTool} from './analysis-tool.js';
|
|
export {AssemblyCompiler} from './assembly.js';
|
|
export {AvrGcc6502Compiler} from './avrgcc6502.js';
|
|
export {BeebAsmCompiler} from './beebasm.js';
|
|
export {CarbonCompiler} from './carbon.js';
|
|
export {Cc65Compiler} from './cc65.js';
|
|
export {CircleCompiler} from './circle.js';
|
|
export {CIRCTCompiler} from './circt.js';
|
|
export {CL430Compiler} from './cl430.js';
|
|
export {ClangCompiler} from './clang.js';
|
|
export {ClangCLCompiler} from './clangcl.js';
|
|
export {ClangCudaCompiler} from './clang.js';
|
|
export {ClangHipCompiler} from './clang.js';
|
|
export {ClangIntelCompiler} from './clang.js';
|
|
export {CleanCompiler} from './clean.js';
|
|
export {CobolCompiler} from './cobol.js';
|
|
export {CppFrontCompiler} from './cppfront.js';
|
|
export {CprocCompiler} from './cproc.js';
|
|
export {CLSPVCompiler} from './clspv.js';
|
|
export {CrystalCompiler} from './crystal.js';
|
|
export {CSharpCompiler} from './dotnet.js';
|
|
export {DartCompiler} from './dart.js';
|
|
export {DefaultCompiler} from './default.js';
|
|
export {DMDCompiler} from './dmd.js';
|
|
export {EllccCompiler} from './ellcc.js';
|
|
export {ErlangCompiler} from './erlang.js';
|
|
export {EWARMCompiler} from './ewarm.js';
|
|
export {EWAVRCompiler} from './ewavr.js';
|
|
export {FakeCompiler} from './fake-for-test.js';
|
|
export {FlangCompiler} from './flang.js';
|
|
export {FortranCompiler} from './fortran.js';
|
|
export {FPCCompiler} from './pascal.js';
|
|
export {FSharpCompiler} from './dotnet.js';
|
|
export {GCCCompiler} from './gcc.js';
|
|
export {GCCRSCompiler} from './gccrs.js';
|
|
export {GolangCompiler} from './golang.js';
|
|
export {HaskellCompiler} from './haskell.js';
|
|
export {HLSLCompiler} from './hlsl.js';
|
|
export {HookCompiler} from './hook.js';
|
|
export {ISPCCompiler} from './ispc.js';
|
|
export {JaktCompiler} from './jakt.js';
|
|
export {JavaCompiler} from './java.js';
|
|
export {JuliaCompiler} from './julia.js';
|
|
export {KotlinCompiler} from './kotlin.js';
|
|
export {LDCCompiler} from './ldc.js';
|
|
export {LLCCompiler} from './llc.js';
|
|
export {LLVMmcaTool} from './llvm-mca.js';
|
|
export {LLVMMOSCompiler} from './llvm-mos.js';
|
|
export {MLIRCompiler} from './mlir.js';
|
|
export {GM2Compiler} from './gm2.js';
|
|
export {MrustcCompiler} from './mrustc.js';
|
|
export {NasmCompiler} from './nasm.js';
|
|
export {NimCompiler} from './nim.js';
|
|
export {NvccCompiler} from './nvcc.js';
|
|
export {OCamlCompiler} from './ocaml.js';
|
|
export {OptCompiler} from './opt.js';
|
|
export {OSACATool} from './osaca.js';
|
|
export {PascalWinCompiler} from './pascal-win.js';
|
|
export {PonyCompiler} from './pony.js';
|
|
export {PPCICompiler} from './ppci.js';
|
|
export {PtxAssembler} from './ptxas.js';
|
|
export {PythonCompiler} from './python.js';
|
|
export {RacketCompiler} from './racket.js';
|
|
export {RGACompiler} from './rga.js';
|
|
export {RubyCompiler} from './ruby.js';
|
|
export {RustcCgGCCCompiler} from './rustc-cg-gcc.js';
|
|
export {RustCompiler} from './rust.js';
|
|
export {ScalaCompiler} from './scala.js';
|
|
export {SdccCompiler} from './sdcc.js';
|
|
export {SolidityCompiler} from './solidity.js';
|
|
export {SPIRVCompiler} from './spirv.js';
|
|
export {SwiftCompiler} from './swift.js';
|
|
export {TenDRACompiler} from './tendra.js';
|
|
export {TinyCCompiler} from './tinyc.js';
|
|
export {ToitCompiler} from './toit.js';
|
|
export {TurboCCompiler} from './turboc.js';
|
|
export {TypeScriptNativeCompiler} from './typescript-native.js';
|
|
export {VBCompiler} from './dotnet.js';
|
|
export {Win32Compiler} from './win32.js';
|
|
export {Win32Vc6Compiler} from './win32-vc6.js';
|
|
export {Win32VcCompiler} from './win32-vc.js';
|
|
export {WineVcCompiler} from './wine-vc.js';
|
|
export {WslVcCompiler} from './wsl-vc.js';
|
|
export {ZigCC} from './zigcc.js';
|
|
export {ZigCompiler} from './zig.js';
|
|
export {ZigCXX} from './zigcxx.js';
|
|
export {z88dkCompiler} from './z88dk.js';
|