diff options
author | Marc Poulhiès <dkm@kataplop.net> | 2024-02-28 16:38:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 16:38:03 +0100 |
commit | 8e6c90d1370e051d18eeb7f705527d3d97a6cd1c (patch) | |
tree | a90e6cc8b90c8037bf0cc494647d90be80d2f812 /lib/compilers/_all.ts | |
parent | 02d2194004410879bf41fd32bf117b0df02a1d88 (diff) | |
download | compiler-explorer-8e6c90d1370e051d18eeb7f705527d3d97a6cd1c.tar.gz compiler-explorer-8e6c90d1370e051d18eeb7f705527d3d97a6cd1c.zip |
pythran: initial support (#6197)gh-10807
Pythran is a python to c++ transpiler.
Our supports both the C++ and the full link to a share library (a python
module).
See https://pypi.org/project/pythran/ for more information.
fixes #6079
Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
Diffstat (limited to 'lib/compilers/_all.ts')
-rw-r--r-- | lib/compilers/_all.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/_all.ts b/lib/compilers/_all.ts index 02d497572..0e1dbb2aa 100644 --- a/lib/compilers/_all.ts +++ b/lib/compilers/_all.ts @@ -103,6 +103,7 @@ export {PonyCompiler} from './pony.js'; export {PPCICompiler} from './ppci.js'; export {PtxAssembler} from './ptxas.js'; export {PythonCompiler} from './python.js'; +export {PythranCompiler} from './pythran.js'; export {RacketCompiler} from './racket.js'; export {RGACompiler} from './rga.js'; export {RubyCompiler} from './ruby.js'; |