aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/mrustc.js
Commit message (Collapse)AuthorAge
* Tsify lib/compilers (#4609)gh-6026Jeremy Rifkin2023-01-29
|
* npm run lint to get const fixesgh-5871Jeremy Rifkin2023-01-17
|
* The Grand Reformat (#3643)gh-2830Matt Godbolt2022-05-09
| | | | | | | | | | * The Grand Reformat - everything made prettier...literally - some tweaks to include a few more files, including documentation - minor changes to format style - some tiny `// prettier-ignore` changes to keep a few things the way we like them - a couple of super minor tweaks to embedded document types to ensure they format correctly
* mrustc: force crate_type to rlib (#2691)Marc Poulhiès2021-05-27
| | | | Defaults to bin, which will complain when there is no main(). But at the moment compiler explorer has no way to compile the resulting C and get an executable.
* Initial support for mrustc (#2681)Marc Poulhiès2021-05-27
Add the needed base for new mrustc compiler. https://github.com/thepowersgang/mrustc mrustc is transpiling Rust to C and is mainly used for bootstraping rustc. This change treats the C output as the final product (as is assembly for GCC/clang). It is not easily possible to automatically plug this C to other C compilers to get assembly or executable. fixes #2643