Android: Build for all Android architectures

* Don't limit support to ARM only (adds MIPS support)
* Also add a workaround for a MIPS NDK linker bug
* Also add a gitignore entry required to run bootstrap.sh on OS X
* Closes #134
This commit is contained in:
Andrew Fernandes
2013-08-20 12:19:26 -04:00
committed by Pete Batard
parent 805cc3ec40
commit 650e22508f
3 changed files with 8 additions and 2 deletions

1
.gitignore vendored
View File

@@ -47,3 +47,4 @@ Release
*.patch
*~
*.orig
.dirstamp

View File

@@ -16,4 +16,9 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
APP_ABI := armeabi armeabi-v7a x86
APP_ABI := all
# Workaround for MIPS toolchain linker being unable to find liblog dependency
# of shared object in NDK versions at least up to r9.
#
APP_LDFLAGS := -llog

View File

@@ -1 +1 @@
#define LIBUSB_NANO 10853
#define LIBUSB_NANO 10854