-
Notifications
You must be signed in to change notification settings - Fork 12.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crossplatform compatibility error #5854
Comments
Same issue with Rust compiler. If it was built on 10.8 it'll crash on 10.7 with same message. |
2 things: 1) Does this still happen? and if it does, 2) is this an actual issue? I mean unless you deliberately cross-compile it, this doesn't seem too strange to me. |
Not a bug; executables don't normally do anything sensible on a different target than the one they were compiled for. |
Are you kidding? All OSX application can be compiled on one version of OS and be running on other one. |
…flip1995 Lint .min(x).max(y) with x < y Fixes rust-lang#5854 changelog: Also lint `ord.min(a).max(b)`, where `a < b` in [`min_max`] lint
Take simple source:
fn main() {
io::println("Hellow world")
}
Compile it on Mac OS X 10.8 and run on Mac OS X 10.7.
Result:
Illegal instruction: 4
The text was updated successfully, but these errors were encountered: