-
Notifications
You must be signed in to change notification settings - Fork 23
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
Feature: MIPS Support #4
Comments
I would also recommend making the cortex-m dependency an optional dependency behind a feature flag. |
So, I tried setting |
After lots of mucking about with cmake and c flags, I got all the mbedtls .a files built for mips. Now just a few functions missing when I try to link:
Could these be good candidates for inclusion in drogue-ffi-compat? |
Hi, I'm working on getting this to compile for MIPS, specifically, mipsel-sony-psp 😄 I've encountered a couple issues, the first of which was
in the build.rs of drogue-tls-sys, which I commented out to get a bit further, resulting in the following linker error:
I did a bit more digging, namely, running
ar x
on the rlibs it mentioned, and thenfile
on the resulting .o, which let me know it was compiled for x86_64.Do I need to supply a MIPS-specific specs file or are the two issues unrelated? How can I tell it to compile for MIPS-2?
The text was updated successfully, but these errors were encountered: