We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
AOSP already provides extensive aarch64 architecture. However, olibc build system lacks of the proper support yet.
The text was updated successfully, but these errors were encountered:
I attempted to add preliminary aarch64 support against bionic:
bionic
--- a/Config.in +++ b/Config.in @@ -26,8 +26,14 @@ config TARGET_CPU_SMP default y if TARGET_arm +config ARCH_ARM_ARMV8 + bool "ARMv8-A 64-bit architecture (AArch64)" + default n + select ARCH_ARM_HAVE_NEON + config TARGET_ARCH string + default "aarch64" if ARCH_ARM_ARMV8=y default "arm" choice
However, olibc fails to build likely because of the absence of bionic/libc/arch-aarch64. @kito-cheng Any idea about the merge?
bionic/libc/arch-aarch64
Sorry, something went wrong.
It's still merge in progress since there is lots change for support 64-bit and most change need merge by manual.
There is series patch for support AArch64, b6c8a3b olibc/olibc@c50f6e1 ... And https://github.com/olibc/olibc, https://github.com/olibc/build/ is already sync with upstream now However seem there is some now totally work now, it's still work in progress :)
jserv
No branches or pull requests
AOSP already provides extensive aarch64 architecture. However, olibc build system lacks of the proper support yet.
The text was updated successfully, but these errors were encountered: