rustc_codegen_cranelift icon indicating copy to clipboard operation
rustc_codegen_cranelift copied to clipboard

Cranelift based backend for rustc

Results 147 rustc_codegen_cranelift issues
Sort by recently updated
recently updated
newest added

https://github.com/rust-lang/rustc_codegen_cranelift/blob/master/patches/0002-abi-cafe-Disable-broken-tests.patch * [ ] aarch64-unknown-linux-gnu * [ ] `F32Array` with `extern "C"` * [x] `OptionU128` with `extern "Rust"` and `repr(C)` (https://github.com/rust-lang/rust/pull/131211) * [ ] aarch64-apple-darwin * [ ] `SingleVariantUnion` with...

C-bug
A-abi

Minimal example: main.rs ``` use rustls::crypto::aws_lc_rs; fn main() { aws_lc_rs::default_provider().install_default().unwrap(); } ``` Dependencies ``` [dependencies] rustls = "0.23" ``` Output ``` Compiling cg_cliff_aws v0.1.0 (/home/abdullah/Playground/cg_cliff_aws) error: linking with `cc` failed:...

## Setup Cargo.toml ```toml [package] name = "minimal_doctest_fail" version = "0.1.0" authors = ["Jan Hohenheim "] edition = "2021" [dependencies] bevy = { version = "0.14.0", features = ["dynamic_linking"] }...

C-bug
O-windows

1. Build Bevy's breakout example using cg_clif. 2. Run it. 3. Crash ``` Process 4226 stopped * thread #21, stop reason = EXC_BAD_ACCESS (code=1, address=0x10) frame #0: 0x00000001040d3c98 breakout`core::sync::atomic::atomic_load::h64d41284dd085cdc +...

C-bug
O-macos

CodeView debug info doesn't contain any information about unwind tables (`.xdata` or `.pdata`), so ignore both Arm64 and x64 unwind info when emitting debug info.

Hi guys, Apologies if this is a dupe, I searched but couldn't find anything. Big GUI project here and have been playing around with using cranelift to improve compile times....

A-unwind

Minimal reproducible example: https://github.com/GlennFolker/cranedrop The `dynamic_linking` feature flag, which converts bevy and std into a dylib for compile-time speedup, completely fails when using the Cranelift codegen backend. System information: -...

C-bug
O-windows

Hi 👋🏽, just wanted to report that it seems that the popular https://docs.rs/inventory/latest/inventory crate does not work with cranelift. I tried with the latest nightly-2025-05-16 version. Is this expected? If...

Cranelift doesn't yet support unwinding: https://github.com/bytecodealliance/wasmtime/issues/1677

C-enhancement
S-blocked
A-unwind

Hi, I'm making this PR primarily to let you know I'm working on a project that uses the JIT in a slightly weird way, I'm making a language that is...