about summary refs log tree commit diff
path: root/docs
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-08-09 12:30:40 +0200
committerGitHub <noreply@github.com>2021-08-09 12:30:40 +0200
commitc11d8f5be17c9a2a7514bc8b65247a724c2fc217 (patch)
tree7b2091243d9e567dc7e5a23f2899d94cd9eacea8 /docs
parent98f45afd6482e67cff143d8337d4d32cfc28ba9a (diff)
downloadrust-c11d8f5be17c9a2a7514bc8b65247a724c2fc217.tar.gz
rust-c11d8f5be17c9a2a7514bc8b65247a724c2fc217.zip
Add warning to the jit mode section of the usage docs
Closes #1192
Diffstat (limited to 'docs')
-rw-r--r--docs/usage.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/usage.md b/docs/usage.md
index 87eec0e818b..bcc5745d9d1 100644
--- a/docs/usage.md
+++ b/docs/usage.md
@@ -24,6 +24,8 @@ $ $cg_clif_dir/build/bin/cg_clif my_crate.rs
 
 ## Jit mode
 
+> ⚠⚠⚠ The JIT mode is highly experimental. It may be slower than AOT compilation due to lack of incremental compilation. It may also be hard to setup if you have cargo dependencies. ⚠⚠⚠
+
 In jit mode cg_clif will immediately execute your code without creating an executable file.
 
 > This requires all dependencies to be available as dynamic library.