From 408f27badeb210f9cd824b98627c9b0ced73ed0b Mon Sep 17 00:00:00 2001 From: bjorn3 Date: Sat, 16 Feb 2019 12:21:22 +0100 Subject: [PATCH] Libstd and varargs are now supported. --- Readme.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Readme.md b/Readme.md index 230a08191ff..e6b6f68bfac 100644 --- a/Readme.md +++ b/Readme.md @@ -32,8 +32,6 @@ $ RUSTFLAGS="-Cpanic=abort -Zcodegen-backend=$cg_clif_dir/target/debug/librustc_ * Good non-rust abi support ([scalar pair and vector are passed by-ref](https://github.com/bjorn3/rustc_codegen_cranelift/issues/10)) * Checked binops ([some missing instructions in cranelift](https://github.com/CraneStation/cranelift/issues/460)) * Inline assembly ([no cranelift support](https://github.com/CraneStation/cranelift/issues/444)) -* Varargs ([no cranelift support](https://github.com/CraneStation/cranelift/issues/212)) -* libstd (needs varargs and some other stuff) ([tracked here](https://github.com/bjorn3/rustc_codegen_cranelift/issues/146)) * u128 and i128 ([no cranelift support](https://github.com/CraneStation/cranelift/issues/354)) * SIMD ([tracked here](https://github.com/bjorn3/rustc_codegen_cranelift/issues/171)) @@ -42,7 +40,3 @@ $ RUSTFLAGS="-Cpanic=abort -Zcodegen-backend=$cg_clif_dir/target/debug/librustc_ ### Can't compile Try updating your nightly compiler. You can try to use an nightly a day or two older if updating rustc doesn't fix it. If you still can't compile it, please fill an issue. - -### error[E0463]: can't find crate for `std` while compiling a no_std crate - -If you use `RUSTFLAGS` to pass `-Zcodegen-backend` to rustc, cargo will compile `build-dependencies` with those flags too. Because this project doesn't support libstd yet, that will result in an error. I don't know of any way to fix this. :(