Android: Build for all Android architectures
authorAndrew Fernandes <andrew@fernandes.org>
Tue, 20 Aug 2013 16:19:26 +0000 (12:19 -0400)
committerPete Batard <pete@akeo.ie>
Sat, 28 Dec 2013 22:58:06 +0000 (22:58 +0000)
* 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

.gitignore
android/jni/Application.mk
libusb/version_nano.h

index 67151c7..b04936f 100644 (file)
@@ -47,3 +47,4 @@ Release
 *.patch
 *~
 *.orig
+.dirstamp
index 4ab1012..f972a9e 100644 (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
index e55102e..92a8c18 100644 (file)
@@ -1 +1 @@
-#define LIBUSB_NANO 10853
+#define LIBUSB_NANO 10854