-
Notifications
You must be signed in to change notification settings - Fork 709
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
macOS to Android cross compile error: No such file or directory #622
Comments
Update PATH=$(PATH):$(NDK_STANDALONE)/arm64/bin \
CC=aarch64-linux-android-gcc \
CXX=aarch64-linux-android-g++ \
cargo build --target aarch64-linux-android --release --lib The same worked for the |
Update Our exact setup can be seen here. |
I'm closing this as a combination of "dupe of #486" and "no longer an issue." Thanks for all the help here. |
I've tried a bunch of things to get
aarch64
andarmaebi-v7a
to build for androidbuild.rs
--api 21
)ring
-- specifically 0.12.1 and 0.13.0.I've also made sure that I am able to build a simple static library for these architectures when not requiring/using
ring
.The build fails to compile multiple files of
.c
/.S
crypto code with the error:I started at #486 but the build still fails even for the exact rev that shows passing tests on travis. If I had to guess, I'd say the problem is related to cross-compiling the C/ASM code specifically.
The text was updated successfully, but these errors were encountered: