I am getting "Android NDK: Host 'awk' tool is outdated. Please define HOST_AWK to point to Gawk or Nawk !" error on latest android ndk revision 7.
|
feedback
|
|
Solved the problem. Solution:
Imoprtant thing to note on windows machine: ndk revision 7 onwards, ndk source can be built without cygwin, ie.., instead of calling ndk-build command from inside a Cygwin shell, you should call run ndk-build.cmd inside a MSDOS command window. It works because probably ndk-build first tries to use a locally defined, but old (at least for Linux), version of awk. By renaming it, we make it unreachable by such command, so, apparently, ndk-build calls the system-wide awk. | |||||||||||||||
feedback
|
|
This Solution (from Santhosh) works also under windows:
| |||
|
feedback
|
|
Take a look at this japanese post: http://d.hatena.ne.jp/yohpapa/20111113/1321198570 They explain how to solve your problem. Is in japanese, but the commands are legible =) Hope this helps... | |||
|
feedback
|
|
I was having a problem with different versions of awk on windows. This change uses the cygwin version of awk from a cygwin console and the prebuilt version from a dos console. Add to init.mk:
| |||
|
feedback
|
|
I think the problem is To solve this problem: 1 - Rename 2 - Open Replace
with
Note that | ||||
|
feedback
|
HOST_AWKenv variable, remove it before running ndk-8 or you will get the same error. – Graeme May 15 at 15:27