mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 12:02:48 +01:00
fix(depends): make it compilable with Xcode 15 on macos
This commit is contained in:
parent
e4c9cb5371
commit
aa7ba58804
@ -21,8 +21,12 @@ $(package)_config_opts_i686_android=address-model=32
|
|||||||
$(package)_config_opts_aarch64_android=address-model=64
|
$(package)_config_opts_aarch64_android=address-model=64
|
||||||
$(package)_config_opts_x86_64_android=address-model=64
|
$(package)_config_opts_x86_64_android=address-model=64
|
||||||
$(package)_config_opts_armv7a_android=address-model=32
|
$(package)_config_opts_armv7a_android=address-model=32
|
||||||
|
unary_function=unary_function
|
||||||
ifneq (,$(findstring clang,$($(package)_cxx)))
|
ifneq (,$(findstring clang,$($(package)_cxx)))
|
||||||
$(package)_toolset_$(host_os)=clang
|
$(package)_toolset_$(host_os)=clang
|
||||||
|
ifeq ($(build_os),darwin)
|
||||||
|
unary_function=__unary_function
|
||||||
|
endif
|
||||||
else
|
else
|
||||||
$(package)_toolset_$(host_os)=gcc
|
$(package)_toolset_$(host_os)=gcc
|
||||||
endif
|
endif
|
||||||
@ -36,8 +40,10 @@ $(package)_cxxflags_x86_64=-fcf-protection=full
|
|||||||
endef
|
endef
|
||||||
|
|
||||||
# Fix unused variable in boost_process, can be removed after upgrading to 1.72
|
# Fix unused variable in boost_process, can be removed after upgrading to 1.72
|
||||||
|
# Fix missing unary_function in clang15 on macos, can be removed after upgrading to 1.81
|
||||||
define $(package)_preprocess_cmds
|
define $(package)_preprocess_cmds
|
||||||
sed -i.old "s/int ret_sig = 0;//" boost/process/detail/posix/wait_group.hpp && \
|
sed -i.old "s/int ret_sig = 0;//" boost/process/detail/posix/wait_group.hpp && \
|
||||||
|
sed -i.old "s/unary_function/$(unary_function)/" boost/container_hash/hash.hpp && \
|
||||||
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cflags>\"$($(package)_cflags)\" <cxxflags>\"$($(package)_cxxflags)\" <compileflags>\"$($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_ar)\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
echo "using $($(package)_toolset_$(host_os)) : : $($(package)_cxx) : <cflags>\"$($(package)_cflags)\" <cxxflags>\"$($(package)_cxxflags)\" <compileflags>\"$($(package)_cppflags)\" <linkflags>\"$($(package)_ldflags)\" <archiver>\"$($(package)_ar)\" <striper>\"$(host_STRIP)\" <ranlib>\"$(host_RANLIB)\" <rc>\"$(host_WINDRES)\" : ;" > user-config.jam
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user