lancelot
v0.9.2
英特尔X86(-64)代码分析库,重建控制流
考虑在开发过程中使用Cranelift:
$ rustup component add rustc-codegen-cranelift-preview --toolchain nightly
$ env CARGO_PROFILE_DEV_CODEGEN_BACKEND=cranelift cargo build -Zcodegen-backend还考虑使用mold :
$ mold -run cargo build
# or with cranelift:
$ env CARGO_PROFILE_DEV_CODEGEN_BACKEND=cranelift mold -run cargo build -Zcodegen-backend如果它不适用于您的(读:Willi's)Nix设置,请仅将其用于增量构建。
$ rustup update # update rust compiler
$ cargo update # update dependencies, not crossing major versions
$ cargo outdated -x unicorn # find outdated major version dependencies
因为我们使用旧版本的独角兽版本更容易用货物建造,所以我们想忽略任何来自独角兽的旧依赖性。
$ pre-commit run --all-files --hook-stage manual