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
In particular, I'm experiencing the following behavior:
test.rs:
fn main() {
println!("Hello, world!");
}
build.rs:
fn main() {
println!("{}", 2 + 3);
}
[~/test]$ rustc --version
rustc 1.8.0-dev (53c2933d4 2016-01-29)
[~/test]$ rustc -o test test.rs -g
[~/test]$ rustc -o test build.rs -g
Expected no forward declarations!
!217 = <temporary!> !{}
LLVM ERROR: Broken function found, compilation aborted!
[~/test]$ rustc -o test build.rs
[~/test]$ ./test
5
I'm aware that PowerPC is not a "tier 1" platform, but any insight into why this might happen would be interesting. Given my experience, the learning curve for how debug symbols are added via '-g' is a bit steep.
The text was updated successfully, but these errors were encountered:
steveklabnik
added
the
I-ICE
Issue: The compiler panicked, giving an Internal Compilation Error (ICE) ❄️
label
Feb 2, 2016
In particular, I'm experiencing the following behavior:
test.rs:
build.rs:
I'm aware that PowerPC is not a "tier 1" platform, but any insight into why this might happen would be interesting. Given my experience, the learning curve for how debug symbols are added via '-g' is a bit steep.
The text was updated successfully, but these errors were encountered: