about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-04-07 11:52:11 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2021-04-07 11:52:11 +0200
commit53bfc6729ae4a53c8092473452de7a272224df5d (patch)
tree4afae3c9d545328d747076545beb0a1ec85bbdaa /docs
parent1ee0aa9416b9da220d7370007c5e3c402d6714b0 (diff)
downloadrust-53bfc6729ae4a53c8092473452de7a272224df5d.tar.gz
rust-53bfc6729ae4a53c8092473452de7a272224df5d.zip
Centralize all configuration into config.rs
Diffstat (limited to 'docs')
-rw-r--r--docs/env_vars.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/env_vars.md b/docs/env_vars.md
deleted file mode 100644
index f7fde1b4f3a..00000000000
--- a/docs/env_vars.md
+++ /dev/null
@@ -1,15 +0,0 @@
-# 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_ENABLE_VERIFIER</dt>
-    <dd>Enable the Cranelift ir verifier for all compilation passes. If not set it will only run once
-    before passing the clif ir to Cranelift for compilation.</dt>
-</dl>