forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge bitcoin#16110: Add Android NDK support
- Loading branch information
Showing
16 changed files
with
191 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ifeq ($(HOST),armv7a-linux-android) | ||
android_AR=$(ANDROID_TOOLCHAIN_BIN)/arm-linux-androideabi-ar | ||
android_CXX=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)eabi$(ANDROID_API_LEVEL)-clang++ | ||
android_CC=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)eabi$(ANDROID_API_LEVEL)-clang | ||
android_RANLIB=$(ANDROID_TOOLCHAIN_BIN)/arm-linux-androideabi-ranlib | ||
else | ||
android_AR=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)-ar | ||
android_CXX=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)$(ANDROID_API_LEVEL)-clang++ | ||
android_CC=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)$(ANDROID_API_LEVEL)-clang | ||
android_RANLIB=$(ANDROID_TOOLCHAIN_BIN)/$(HOST)-ranlib | ||
endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
68 changes: 68 additions & 0 deletions
68
depends/patches/libevent/fix_android_arc4random_addrandom.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
From cadae3ab7abf45e61ecae8aac39d97d1f3cbd336 Mon Sep 17 00:00:00 2001 | ||
From: Lawrence Nahum <lawrence@greenaddress.it> | ||
Date: Sun, 3 Dec 2017 22:56:09 +0100 | ||
Subject: [PATCH] fixup | ||
|
||
--- | ||
configure.ac | 1 + | ||
evutil_rand.c | 3 +++ | ||
include/event2/util.h | 4 ++-- | ||
3 files changed, 6 insertions(+), 2 deletions(-) | ||
|
||
diff --git a/configure.ac b/configure.ac | ||
index 7528d37..3bb2121 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -341,6 +341,7 @@ dnl Checks for library functions. | ||
AC_CHECK_FUNCS([ \ | ||
accept4 \ | ||
arc4random \ | ||
+ arc4random_addrandom \ | ||
arc4random_buf \ | ||
eventfd \ | ||
epoll_create1 \ | ||
diff --git a/evutil_rand.c b/evutil_rand.c | ||
index 046a14b..3f0bf2c 100644 | ||
--- a/evutil_rand.c | ||
+++ b/evutil_rand.c | ||
@@ -191,6 +191,7 @@ evutil_secure_rng_get_bytes(void *buf, size_t n) | ||
{ | ||
ev_arc4random_buf(buf, n); | ||
} | ||
+#ifdef HAVE_ARC4RANDOM_ADDRANDOM | ||
|
||
void | ||
evutil_secure_rng_add_bytes(const char *buf, size_t n) | ||
@@ -199,6 +200,8 @@ evutil_secure_rng_add_bytes(const char *buf, size_t n) | ||
n>(size_t)INT_MAX ? INT_MAX : (int)n); | ||
} | ||
|
||
+#endif | ||
+ | ||
void | ||
evutil_free_secure_rng_globals_(void) | ||
{ | ||
diff --git a/include/event2/util.h b/include/event2/util.h | ||
index dd4bbb6..a9a169d 100644 | ||
--- a/include/event2/util.h | ||
+++ b/include/event2/util.h | ||
@@ -841,7 +841,7 @@ int evutil_secure_rng_init(void); | ||
*/ | ||
EVENT2_EXPORT_SYMBOL | ||
int evutil_secure_rng_set_urandom_device_file(char *fname); | ||
- | ||
+#ifdef HAVE_ARC4RANDOM_ADDRANDOM | ||
/** Seed the random number generator with extra random bytes. | ||
|
||
You should almost never need to call this function; it should be | ||
@@ -858,7 +858,7 @@ int evutil_secure_rng_set_urandom_device_file(char *fname); | ||
*/ | ||
EVENT2_EXPORT_SYMBOL | ||
void evutil_secure_rng_add_bytes(const char *dat, size_t datlen); | ||
- | ||
+#endif | ||
#ifdef __cplusplus | ||
} | ||
#endif | ||
-- | ||
2.14.3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- old/qtbase/src/plugins/platforms/android/androidjnimain.cpp | ||
+++ new/qtbase/src/plugins/platforms/android/androidjnimain.cpp | ||
@@ -890,6 +890,14 @@ | ||
__android_log_print(ANDROID_LOG_FATAL, "Qt", "registerNatives failed"); | ||
return -1; | ||
} | ||
+ | ||
+ const jint ret = QT_PREPEND_NAMESPACE(QtAndroidPrivate::initJNI(vm, env)); | ||
+ if (ret != 0) | ||
+ { | ||
+ __android_log_print(ANDROID_LOG_FATAL, "Qt", "initJNI failed"); | ||
+ return ret; | ||
+ } | ||
+ | ||
QWindowSystemInterfacePrivate::TabletEvent::setPlatformSynthesizesMouse(false); | ||
|
||
m_javaVM = vm; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- old/qtbase/mkspecs/android-clang/qmake.conf | ||
+++ new/qtbase/mkspecs/android-clang/qmake.conf | ||
@@ -30,7 +30,7 @@ | ||
QMAKE_CFLAGS += -target mips64el-none-linux-android | ||
|
||
QMAKE_CFLAGS += -gcc-toolchain $$NDK_TOOLCHAIN_PATH | ||
-QMAKE_LINK = $$QMAKE_CXX $$QMAKE_CFLAGS -Wl,--exclude-libs,libgcc.a | ||
+QMAKE_LINK = $$QMAKE_CXX $$QMAKE_CFLAGS -Wl,--exclude-libs,libgcc.a -nostdlib++ | ||
QMAKE_CFLAGS += -DANDROID_HAS_WSTRING --sysroot=$$NDK_ROOT/sysroot \ | ||
-isystem $$NDK_ROOT/sysroot/usr/include/$$NDK_TOOLS_PREFIX \ | ||
-isystem $$NDK_ROOT/sources/cxx-stl/llvm-libc++/include \ | ||
@@ -40,7 +40,7 @@ | ||
ANDROID_SOURCES_CXX_STL_LIBDIR = $$NDK_ROOT/sources/cxx-stl/llvm-libc++/libs/$$ANDROID_TARGET_ARCH | ||
|
||
ANDROID_STDCPP_PATH = $$ANDROID_SOURCES_CXX_STL_LIBDIR/libc++_shared.so | ||
-ANDROID_CXX_STL_LIBS = -lc++ | ||
+ANDROID_CXX_STL_LIBS = -lc++_shared | ||
|
||
QMAKE_ARM_CFLAGS_RELEASE = -Oz | ||
QMAKE_ARM_CFLAGS_RELEASE_WITH_DEBUGINFO = -g -Oz |