Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f
'
git-subtree-dir: compiler/rustc_codegen_cranelift git-subtree-mainline:cf798c1ec6
git-subtree-split:793d26047f
This commit is contained in:
commit
ac4f7deb2f
86 changed files with 16617 additions and 0 deletions
15
compiler/rustc_codegen_cranelift/docs/env_vars.md
Normal file
15
compiler/rustc_codegen_cranelift/docs/env_vars.md
Normal file
|
@ -0,0 +1,15 @@
|
|||
# List of env vars recognized by cg_clif
|
||||
|
||||
<dl>
|
||||
<dt>CG_CLIF_JIT_ARGS</dt>
|
||||
<dd>When JIT mode is enable pass these arguments to the program.</dd>
|
||||
<dt>CG_CLIF_INCR_CACHE_DISABLED</dt>
|
||||
<dd>Don't cache object files in the incremental cache. Useful during development of cg_clif
|
||||
to make it possible to use incremental mode for all analyses performed by rustc without caching
|
||||
object files when their content should have been changed by a change to cg_clif.</dd>
|
||||
<dt>CG_CLIF_DISPLAY_CG_TIME</dt>
|
||||
<dd>If "1", display the time it took to perform codegen for a crate</dd>
|
||||
<dt>CG_CLIF_FUNCTION_SECTIONS</dt>
|
||||
<dd>Use a single section for each function. This will often reduce the executable size at the
|
||||
cost of making linking significantly slower.</dd>
|
||||
</dl>
|
Loading…
Add table
Add a link
Reference in a new issue