Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to compile a library using android-ndk-r5 standalone toolchain and autotools. When doing a ./configure, it fails with:

$ ./configure --host=arm-linux-androideabi
...snip...
checking host system type... Invalid configuration `arm-linux-androideabi': system `androideabi' not recognized
configure: error: /bin/sh ./config.sub arm-linux-androideabi failed

Explicitly setting CC and CXX does not work either (configure says to use --host).

The NDK docs and various materials online seems to indicate that using the standalone toolchain in this manner should be possible. What is wrong here? and how can I resolve it? (besides simply ditching autoconf and going back to Android.mk)

share|improve this question

2 Answers

up vote 19 down vote accepted

You might need a newer config.sub and config.guess, 2010-05-20 or later.

share|improve this answer
Yes, apparently my config.sub was 2009-11-20. Replacing with a newer one works. Thanks. – larvyde Jan 5 '11 at 1:17
Could someone elaborate on this? Do I need to replace those files in the directory of the library I compile? Or a systemwide change? Where do I get these files? – Peterdk Dec 22 '11 at 12:16
2  
i do the same thing,but nothing change.Any idea? – kaiwii ho Apr 11 '12 at 3:38
kaiwii@ubuntu:~/test/fuse-2.8.1/fuse-2.8.1$ ./configure CC= arm-linux-androideabi-gcc -host= arm-linux-androideabi –enable-static_link configure: WARNING: you should use --build, --host, --target configure: WARNING: you should use --build, --host, --target configure: WARNING: you should use --build, --host, --target configure: WARNING: invalid host type: –enable-static_link checking build system type... Invalid configuration arm-linux-androideabi-gcc': machine arm-linux-androideabi' not recognized configure: error: /bin/bash ./config.sub arm-linux-androideabi-gcc failed – kaiwii ho Apr 11 '12 at 3:39

You can get the newer config.sub and config.guess from here

I took the newest from both, but that lead to errors, so I took the mentioned ones of Peter Eisentraut's date.

share|improve this answer

protected by Community Nov 15 '11 at 8:53

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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