-
Notifications
You must be signed in to change notification settings - Fork 2.5k
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
SIGILL on old CPU #958
Comments
This looks like it's actually the stack overflow handler getting triggered a little too early, not entirely sure why... |
When I try to use bundled
Rest of the stacktrace is the same as above. |
Can you run a disassembly of |
Of course, here it is:
I'm not 100% sure I remember exactly how DIV works, but it seems that it's a Null Pointer Dereference error during trying to dereference a pointer stored in [ebx + 18h] -- which seems to be 'nullptr'. If that's not the case, then sorry for confusion ;). Threading info -- seems it's just one thread:
|
I think that's a divide-by-zero exception (causing the SIGFPE). I feel like I've seen this in the past, but I forget how we fixed it... The internet tells me that this is generally due to concurrent initialization of openssl (bad), but there's only one thread here, so I'm... not entirely sure what's going on! |
While I still don't know for 100%, but I guess this is most likely due to the binaries built to something newer than i686, despite the i686 tag names in filenames. I have this kind of problems all over the place.
I won't dig this issue anymore, because my problem is most likely very isolated (not many people are using CPUs without SSE2 I guess). I'll simply continue using |
@antekone that sounds like a legitimate issue. Opening a bug report on for rust itself ( https://github.com/rust-lang/rust ) and referencing this one would be useful |
@antekone does this still reproduce? |
Just checked with
"Błędna instrukcja (zrzut pamięci)" means "Invalid instruction (core dumped)". Later, I've checked by directly downloading
(again,
Also, for latest |
Ok, thanks for the update! |
It's safe to close this one as well. |
@petevine oh? does it not reproduce? |
I was thinking more along the lines of WONTFIX with appropriate build instructions. |
@petevine ok cool, thanks for the update! For future reference, could you paste the instructions here as well? |
Sure, it's possible to build rustc for previous generations of x86 processors, provided this line gets modified and both CFLAGS and CXXFLAGS get set to the chosen architecture when doing a rust build, starting with llvm from scratch. At present it's best to leave the target name as it is. It seems using a prebuilt llvm can lead to problems. In case anyone needs just the cargo binary download to bootstrap cargo on i686: https://www.dropbox.com/s/0f1qv1x6e3dsocl/cargo-i686_generic.zip?dl=0 or on i586: https://www.dropbox.com/s/8xrr2izcwh44pvs/cargo-i586.zip?dl=0 |
I'm trying to use Cargo on a computer with an old CPU:
This CPU is compatible with i686 architecture. When I'm trying to use Cargo (i.e. by using "cargo new --bin"), OR when trying to compile Cargo myself, I'm getting a crash:
Here is some debug info, extracted from the coredump generated in the crash above:
As a sidenote, the same executable file (
cargo
) on a different CPU (i7-4470k) works perfectly OK!The text was updated successfully, but these errors were encountered: