You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Readme.md
+2-16Lines changed: 2 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
> ⚠⚠⚠ Certain kinds of FFI don't work yet. ⚠⚠⚠
4
4
5
-
The goal of this project is to create an alternative codegen backend for the rust compiler based on [Cranelift](https://github.com/bytecodealliance/wasmtime/blob/master/cranelift). This has the potential to improve compilation times in debug mode. If your project doesn't use any of the things listed under "Not yet supported", it should probably work fine. If not please open an issue.
5
+
The goal of this project is to create an alternative codegen backend for the rust compiler based on [Cranelift](https://github.com/bytecodealliance/wasmtime/blob/master/cranelift). This has the potential to improve compilation times in debug mode. If your project doesn't use any of the things listed under "Not yet supported", it should work fine. If not please open an issue.
6
6
7
7
## Building
8
8
@@ -59,21 +59,7 @@ function jit_calc() {
59
59
60
60
## Env vars
61
61
62
-
<dl>
63
-
<dt>CG_CLIF_JIT</dt>
64
-
<dd>Enable JIT mode to immediately run a program instead of writing an executable file.</dd>
65
-
<dt>CG_CLIF_JIT_ARGS</dt>
66
-
<dd>When JIT mode is enable pass these arguments to the program.</dd>
67
-
<dt>CG_CLIF_INCR_CACHE_DISABLED</dt>
68
-
<dd>Don't cache object files in the incremental cache. Useful during development of cg_clif
69
-
to make it possible to use incremental mode for all analyses performed by rustc without caching
70
-
object files when their content should have been changed by a change to cg_clif.</dd>
71
-
<dt>CG_CLIF_DISPLAY_CG_TIME</dt>
72
-
<dd>If "1", display the time it took to perform codegen for a crate</dd>
73
-
<dt>CG_CLIF_FUNCTION_SECTIONS</dt>
74
-
<dd>Use a single section for each function. This will often reduce the executable size at the
0 commit comments