mirror of
https://github.com/bitcoin/bitcoin.git
synced 2024-11-20 10:38:42 +01:00
91fbcf41b3
f9af3ced1c
Android: add all arch support (Block Mechanic)d419ca7e32
depends: export dynamic JNI symbols from static qtforandroid.a (Igor Cota)ed30684d03
Qt: patch androidjnimain.cpp to make sure JNI is initialised when statically compiled (Igor Cota)e4c319e8a1
builds: remove superfluous config_opts_aarch64_android (Igor Cota)24ffef0c27
Patch libevent when building for Android (fix arc4random_addrandom) (Igor Cota)f1e40b3e71
Update bitcoin_qt.m4 (BlockMechanic)b4057d8261
Define TARGET_OS when host is android (Igor Cota)80b475f159
Fix Android zlib cross compilation issue (https://stackoverflow.com/questions/21396988/zlib-build-not-configuring-properly-with-cross-compiler-ignores-ar) (Igor Cota)45f8219015
Add full Android build example command and instructions on getting SDK/NDK (Igor Cota)b68f2a68c2
Add config opts and patch for aarch64_android build of Qt (Igor Cota)9c4cb0166e
Add ranlib to android.mk hosts file (fix OSX Android NDK build) (Igor Cota)c2a749c9c1
Add example Android host-platform-triplet and options (Igor Cota)0b0cff3c61
Add support for building Android dependencies (Igor Cota) Pull request description: This allows one to build the dependencies with the Android SDK and goes towards fixing #11844. It has been tested to work with: `make HOST=aarch64-linux-android ANDROID_API_LEVEL=28 ANDROID_TOOLCHAIN_BIN=/home/user/Android/Sdk/ndk-bundle/toolchains/llvm/prebuilt/linux-x86_64/bin NO_QT=1 NO_WALLET=1` ACKs for top commit: Sjors: ACKf9af3ce
. I'm OK with merging and then improving later. Tree-SHA512: cb805115ebe5c9e33db2bf3eab8628808fe3f50052053d8877d8b8e4406d6fea1ed9e5c4dff85d777fb99c81be6ffb9d95a0e6d32344e728e5e0da6c653e2ce7
40 lines
1.6 KiB
Makefile
40 lines
1.6 KiB
Makefile
package=zeromq
|
|
$(package)_version=4.3.1
|
|
$(package)_download_path=https://github.com/zeromq/libzmq/releases/download/v$($(package)_version)/
|
|
$(package)_file_name=$(package)-$($(package)_version).tar.gz
|
|
$(package)_sha256_hash=bcbabe1e2c7d0eec4ed612e10b94b112dd5f06fcefa994a0c79a45d835cd21eb
|
|
$(package)_patches=0001-fix-build-with-older-mingw64.patch 0002-disable-pthread_set_name_np.patch
|
|
|
|
define $(package)_set_vars
|
|
$(package)_config_opts=--without-docs --disable-shared --disable-curve --disable-curve-keygen --disable-perf
|
|
$(package)_config_opts += --without-libsodium --without-libgssapi_krb5 --without-pgm --without-norm --without-vmci
|
|
$(package)_config_opts += --disable-libunwind --disable-radix-tree --without-gcov --disable-dependency-tracking
|
|
$(package)_config_opts += --disable-Werror --disable-drafts --enable-option-checking
|
|
$(package)_config_opts_linux=--with-pic
|
|
$(package)_config_opts_android=--with-pic
|
|
$(package)_cxxflags=-std=c++11
|
|
endef
|
|
|
|
define $(package)_preprocess_cmds
|
|
patch -p1 < $($(package)_patch_dir)/0001-fix-build-with-older-mingw64.patch && \
|
|
patch -p1 < $($(package)_patch_dir)/0002-disable-pthread_set_name_np.patch && \
|
|
cp -f $(BASEDIR)/config.guess $(BASEDIR)/config.sub config
|
|
endef
|
|
|
|
define $(package)_config_cmds
|
|
$($(package)_autoconf)
|
|
endef
|
|
|
|
define $(package)_build_cmds
|
|
$(MAKE) src/libzmq.la
|
|
endef
|
|
|
|
define $(package)_stage_cmds
|
|
$(MAKE) DESTDIR=$($(package)_staging_dir) install-libLTLIBRARIES install-includeHEADERS install-pkgconfigDATA
|
|
endef
|
|
|
|
define $(package)_postprocess_cmds
|
|
sed -i.old "s/ -lstdc++//" lib/pkgconfig/libzmq.pc && \
|
|
rm -rf bin share lib/*.la
|
|
endef
|