-
Notifications
You must be signed in to change notification settings - Fork 258
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
Invalid toolchain path for Windows x86 #45
Milestone
Comments
My patch is no good. Will have another once my machine isn't bogged down running the test suite. |
DanAlbert
added a commit
that referenced
this issue
Apr 16, 2016
Bug: #45 Change-Id: I4d7f40d6f5609b0067cd89d2b2b75f1195c360bf
DanAlbert
added a commit
that referenced
this issue
Apr 16, 2016
Need to check HOST_ARCH64, not HOST_TAG64. Bug: #45 Change-Id: Ic54cd186b7931957c02f21af4314a7068dfbbf3c
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The function of 'host-toolchain-path' defined in 'init.mk' uses $(HOST_TAG64) variable.
And this value represents as "windows-x86" on Windows 32 bit OS.
The problem is that all the toolchain doesn't have 'windows-x86' directory in android-ndk-r11b-windows-x86.zip package. It has only 'windows' directory.
So, it make a compile failure.
When I changed the directory name from "\toolchains\aarch64-linux-android-4.9\prebuilt\windows" to " "\toolchains\aarch64-linux-android-4.9\prebuilt\windows-x86", then the building was successful.
The text was updated successfully, but these errors were encountered: