You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C2Rust helps you migrate C99-compliant code to Rust. The [translator](c2rust-transpile) (or transpiler) produces unsafe Rust code that closely mirrors the input C code. The primary goal of the translator is to preserve functionality; test suites should continue to pass after translation. Generating safe and idiomatic Rust code from C ultimately requires manual effort. However, we are building a scriptable [refactoring tool](c2rust-refactor) that reduces the tedium of doing so. You can also [cross-check](cross-checks) the translated code against the original ([tutorial](docs/cross-check-tutorial.md)).
12
12
@@ -51,22 +51,22 @@ Finally, a rust installation with [Rustup](https://rustup.rs/) is required on al
51
51
52
52
### Installing from crates.io
53
53
54
-
cargo +nightly-2019-09-30 install c2rust
54
+
cargo +nightly-2019-10-04 install c2rust
55
55
56
56
On OS X with Homebrew LLVM, you need to point the build system at the LLVM installation as follows:
If you have trouble with building and installing, or want to build from the latest master, the [developer docs](docs/README-developers.md#building-with-system-llvm-libraries) provide more details on the build system.
@@ -76,7 +76,7 @@ If you have trouble with building and installing, or want to build from the late
76
76
If you'd like to check our recently developed features or you urgently require a bugfixed version of c2rust
0 commit comments