-
-
Notifications
You must be signed in to change notification settings - Fork 104
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
Compiler error when building on custom x86_64 no_std target #57
Comments
Thanks for the bug report, but this doesn't appear actionable to me. Firstly, I don't know how to take the information you've given me and reproduce your error. (What commands should I run? What do I do with your JSON file?) Secondly, any LLVM error one sees is unlikely to be something that crate authors can do something about. I don't have any insight in to how to debug it.
This crate makes extensive use of SIMD CPU instructions on |
I figured as much, but I decided to post the issue just in case you or others had seen this problem previously, or for anyone who may encounter it in the future. Appreciate your quick response! The good news is that I tried a few different compiler versions, and it just seems to be a compatibility problem with my older nightly version. Using the latest nightly compiler worked for me, as did downgrading to memchr 2.1.3 on my nightly version from 2019-07-08. Thanks again, and sorry to bother! |
Oh interesting, that's good to know! Glad to hear it's working. |
I ran into this error when trying to add the
cstr_core
crate to my no_std OS project, which depends onmemchr
and disables its default features.Building in debug mode:
Building in release mode:
For reference and in case it matters, my compiler target .json file is:
My rustc version is
rustc 1.38.0-nightly (78ca1bda3 2019-07-08)
.I've never encountered an error like this before, so I'm not sure what else to say. If more information is needed, I am happy to provide it.
The text was updated successfully, but these errors were encountered: