rustc_codegen_clr icon indicating copy to clipboard operation
rustc_codegen_clr copied to clipboard

This rust compiler backend(module) emmits valid CIL (.NET IR), enabling you to use Rust in .NET projects.

Results 15 rustc_codegen_clr issues
Sort by recently updated
recently updated
newest added

This is an issue tracking the progress of adding tests for each intrinsic. The Rust language has many [intrinsic functions](https://doc.rust-lang.org/core/intrinsics/index.html) . In order for the codegen to function propely, it...

enhancement
good first issue

**Describe the bug** Latest commit fails to compile example in QUICKSTART.md, error: ``` > cargo run warning: unused manifest key: build warning: unused manifest key: unstable Compiling c v0.1.0 (C:\Users\myusername\Documents\code\5-22-24\c)...

bug

While reading https://fractalfir.github.io/generated_html/rustc_codegen_clr_v0_1_1.html I noticed a section on float to integer conversions. As of .NET 8, all numeric types implement `INumberBase` interface. It exposes the following members: ```cs partial interface...

Upon trying to build --all under `Windows 10 22H2` via `cargo +nightly build --all` the build process encounters the error `error[E0425]: cannot find function "f128_support_lib" in module "libc_fns"` ```shell PS...

Fixes bitreverse, and makes tests work on not-x86