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
rusti=> let xs: [i32; 5] = [1, 2, 3, 4, 5];
<anon>:13:5: 13:7 warning: unused variable: `xs`, #[warn(unused_variables)] on by default
<anon>:13 let xs: [i32; 5] = [1, 2, 3, 4, 5];
^~
LLVM ERROR: Program used external function '___morestack_addr' which could not be resolved!
An unknown error occurred
To learn more, run the command again with --verbose.
It has been like this since the previously nightly release.
The text was updated successfully, but these errors were encountered:
steveklabnik
added
A-LLVM
Area: Code generation parts specific to LLVM. Both correctness bugs and optimization-related issues.
O-macos
Operating system: macOS
labels
Mar 5, 2015
This still seems to be happening with the new nightly release 2015-03-20. Are there any workarounds for this ?
(item)➜ rusti git:(master) ✗ cargo run
Compiling rusti v0.0.1 (file:///Users/lowks/Projects/src/rustlang/rusti)
Running `target/debug/rusti`
rusti=> let xs: [i32; 5] = [1, 2, 3, 4, 5];
<anon>:13:5: 13:7 warning: unused variable: `xs`, #[warn(unused_variables)] on by default
<anon>:13 let xs: [i32; 5] = [1, 2, 3, 4, 5];
^~
LLVM ERROR: Program used external function '___morestack_addr' which could not be resolved!
An unknown error occurred
To learn more, run the command again with --verbose.
I have installed the latest release nightly build:
and this is the error I get:
It has been like this since the previously nightly release.
The text was updated successfully, but these errors were encountered: