I am having problems with the latest Android NDK:

ligi@ligid:~$ ndk-build 
/home/ligi/bin/android-ndk/prebuilt/linux-x86/bin/awk: 1: ELF: not found
/home/ligi/bin/android-ndk/prebuilt/linux-x86/bin/awk: 4: Syntax error: word unexpected (expecting ")")
Android NDK: Host 'awk' tool is outdated. Please define HOST_AWK to point to Gawk or Nawk !    
/home/ligi/bin/android-ndk/build/core/init.mk:258: *** Android NDK: Aborting.    .  Stop.

ligi@ligid:~$ `echo $HOST_AWK --v`
GNU Awk 3.1.7

I am on stock ubuntu ant totally out of ideas and good keywords for searches

link|improve this question

feedback

5 Answers

up vote 31 down vote accepted

I also had this issue and found this Japanese site with similar problems:

http://d.hatena.ne.jp/yohpapa/20111113/1321198570

I hope I puzzled out the Google Translated stuff correctly - in any case, basically in the new NDK install, find this directory:

..../android-ndk-r7/prebuilt/linux-x86/bin

and rename the file "awk" there to something else like "awk_"

I did this and ndk_build now works for me. If I am reading the make files right there is a file called init.mk which replaces your HOST_AWK with the prebuilt value if it finds it...so renaming the awk file there defaults back to your gawk.

Hope that helps

Kibi

link|improve this answer
1  
Funny thing. Worked for me too, thanks! – simonescu Nov 16 '11 at 8:00
This solutions apply when you are running a 32 bits version of Linux. This problem does not happen on a 64 Linux distribution. – Sam Quest Dec 1 '11 at 1:51
3  
Note that on Windows, the equivalent worked for me, except I had to rename the file awk.exe inside the prebuilt/windows/bin folder. – aardvarkk Dec 7 '11 at 17:58
1  
changing the name of the awk executable worked for me too! – Amol Gupta Dec 12 '11 at 17:30
+1 thanks that worked! – IamStalker Apr 2 at 4:57
feedback

The problem is the executable ndk/prebuild/linux-x86/awk is compiled for x86_64, it's not run in a 32 bit kernel

link|improve this answer
Ah, thanks for explaining that Joel – Kibi Dec 13 '11 at 10:14
feedback
  1. Update your local awk.
  2. Remove the awk in android-ndk itself.

This should resolve the problem.

link|improve this answer
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:

ifeq ($(HOST_OS),cygwin)
       HOST_AWK := /bin/awk
endif
link|improve this answer
feedback

Go to your <ndk_dir>\build\core\ and open init.mk in a text editor, e.g. notepad

Replace the following line

HOST_AWK := $(wildcard $(HOST_PREBUILT)/awk$(HOST_EXEEXT))

with

ifeq ($(HOST_OS),cygwin)
      HOST_AWK := $(wildcard $(HOST_PREBUILT)/gawk$(HOST_EXEEXT))
else
      HOST_AWK := $(wildcard $(HOST_PREBUILT)/awk$(HOST_EXEEXT))
endif

@Tod : Thanks, I used your hint here

That works.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.