Results 451 comments of Rahix

Generate them with `cargo rustc ... -- --emit=llvm-ir -o` (if I recall everything correctly)

@hercek, if this is the same issue I encountered, just adding a `Xargo.toml` with ```toml [dependencies.core] stage = 0 [dependencies.compiler_builtins] stage = 1 version = "= 0.1.3" ``` should be...

For reference (although I already posted it in the other thread), the stack-trace of the segfault is this: ```text #0 0x00007f4fde5b1cc7 in (anonymous namespace)::RAGreedy::addSplitConstraints(llvm::InterferenceCache::Cursor, llvm::BlockFrequency&) [clone .isra.0] () from /build/x86_64-unknown-linux-gnu/stage1/lib/rustlib/x86_64-unknown-linux-gnu/codegen-backends/librustc_codegen_llvm-llvm.so...

You'll need matching versions of `xargo` and `cargo`. To be specific, these versions work(ed) for me: ```text bash-5.0$ rustc --version rustc 1.37.0-dev bash-5.0$ cargo --version cargo 1.37.0 bash-5.0$ xargo --version...

I'm personally on Archlinux and have seen people using Ubuntu, Debian, and MacOS (ping @peacememories). Distributing my locally built toolchain was often a headache because when I build on my...

Re packaging: From other platforms/languages I am used to shipping a statically linked sys-root containing everything necessary for building. This toolchain is also usually configured against any accidental host contamination...

> I’d suggest distributing an entire Docker image via Docker hub. While I have nothing against doing this _additionally_, I'd not like this to be the only binary distribution. There...

@Logarithmus, maybe the code I wrote for `avr-device` can help here? I have a procedural macro to generate the IRQ definitions which essentially creates [this function definition](https://github.com/Rahix/avr-device/blob/169804d17a756d847904e712d189faf51dbfbdac/macros/src/lib.rs#L83-L94): ```rust #[no_mangle] pub...

@TimNN: Hey, thanks for mentioning this :) I haven't yet posted it here, because I wanted to get it more feature complete first ... (Currently, only the Pins+PWM and Delay...

@shepmaster, @TimNN: I have been able to build the compiler from his branch, but I can't compile libcore using it :( Should I recompile the compiler again or is there...