aboutsummaryrefslogtreecommitdiff
path: root/depends/packages
diff options
context:
space:
mode:
authorPieter Wuille <pieter@wuille.net>2020-12-13 11:36:22 -0800
committerPieter Wuille <pieter@wuille.net>2020-12-13 12:20:39 -0800
commita4118c6e200e02e7560f8bc213697aa2909d95b1 (patch)
treeb3d55b480320174bf769195c297e325e522062e7 /depends/packages
parentade38b6ee8f91e441507c0ee7ffe6ca020748991 (diff)
downloadbitcoin-a4118c6e200e02e7560f8bc213697aa2909d95b1.tar.xz
Add patch to make codesign_allocate compatible with Apple's
Diffstat (limited to 'depends/packages')
-rw-r--r--depends/packages/native_cctools.mk5
1 files changed, 3 insertions, 2 deletions
diff --git a/depends/packages/native_cctools.mk b/depends/packages/native_cctools.mk
index d56b636695..33f69375cc 100644
--- a/depends/packages/native_cctools.mk
+++ b/depends/packages/native_cctools.mk
@@ -4,7 +4,7 @@ $(package)_download_path=https://github.com/tpoechtrager/cctools-port/archive
$(package)_file_name=$($(package)_version).tar.gz
$(package)_sha256_hash=e51995a843533a3dac155dd0c71362dd471597a2d23f13dff194c6285362f875
$(package)_build_subdir=cctools
-$(package)_patches=ld64_disable_threading.patch
+$(package)_patches=ld64_disable_threading.patch segalign.patch
ifeq ($(strip $(FORCE_USE_SYSTEM_CLANG)),)
$(package)_clang_version=8.0.0
@@ -80,7 +80,8 @@ endef
define $(package)_preprocess_cmds
CC=$($(package)_cc) CXX=$($(package)_cxx) INSTALLPREFIX=$($(package)_extract_dir) ./libtapi/build.sh && \
CC=$($(package)_cc) CXX=$($(package)_cxx) INSTALLPREFIX=$($(package)_extract_dir) ./libtapi/install.sh && \
- patch -p1 < $($(package)_patch_dir)/ld64_disable_threading.patch
+ patch -p1 < $($(package)_patch_dir)/ld64_disable_threading.patch && \
+ patch -p1 < $($(package)_patch_dir)/segalign.patch
endef
define $(package)_config_cmds