diff --git a/Readme.md b/Readme.md
index f5a38f0843b..c4e55975541 100644
--- a/Readme.md
+++ b/Readme.md
@@ -2,7 +2,7 @@
> ⚠⚠⚠ Certain kinds of FFI don't work yet. ⚠⚠⚠
-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.
+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.
## Building
@@ -59,21 +59,7 @@ function jit_calc() {
## Env vars
-
- - CG_CLIF_JIT
- - Enable JIT mode to immediately run a program instead of writing an executable file.
- - CG_CLIF_JIT_ARGS
- - When JIT mode is enable pass these arguments to the program.
- - CG_CLIF_INCR_CACHE_DISABLED
- - 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.
- - CG_CLIF_DISPLAY_CG_TIME
- - If "1", display the time it took to perform codegen for a crate
- - CG_CLIF_FUNCTION_SECTIONS
- - Use a single section for each function. This will often reduce the executable size at the
- cost of making linking significantly slower.
-
+[see env_vars.md](docs/env_vars.md)
## Not yet supported
diff --git a/docs/env_vars.md b/docs/env_vars.md
new file mode 100644
index 00000000000..3707909a978
--- /dev/null
+++ b/docs/env_vars.md
@@ -0,0 +1,17 @@
+# List of env vars recognized by cg_clif
+
+
+ - CG_CLIF_JIT
+ - Enable JIT mode to immediately run a program instead of writing an executable file.
+ - CG_CLIF_JIT_ARGS
+ - When JIT mode is enable pass these arguments to the program.
+ - CG_CLIF_INCR_CACHE_DISABLED
+ - 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.
+ - CG_CLIF_DISPLAY_CG_TIME
+ - If "1", display the time it took to perform codegen for a crate
+ - CG_CLIF_FUNCTION_SECTIONS
+ - Use a single section for each function. This will often reduce the executable size at the
+ cost of making linking significantly slower.
+