no-rpath in qt dependency

This commit is contained in:
Tom Trevethan 2026-07-29 13:43:47 +01:00
parent 3da0ed810b
commit e57cfea272
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View file

@ -63,6 +63,7 @@ $(package)_config_opts += -no-openssl
$(package)_config_opts += -no-openvg
$(package)_config_opts += -no-pkg-config
$(package)_config_opts += -no-reduce-relocations
$(package)_config_opts += -no-rpath
$(package)_config_opts += -no-schannel
$(package)_config_opts += -no-sctp
$(package)_config_opts += -no-securetransport

View file

@ -227,9 +227,11 @@ add_executable(elements-qt
../init/bitcoin-qt.cpp
)
set_target_properties(elements-qt PROPERTIES
SKIP_BUILD_RPATH OFF
)
if(APPLE)
set_target_properties(elements-qt PROPERTIES
SKIP_BUILD_RPATH OFF
)
endif()
add_windows_resources(elements-qt res/bitcoin-qt-res.rc)

View file

@ -54,7 +54,7 @@ def fill_mempool(test_framework, node, *, tx_sync_fun=None):
minrelayfee = node.getnetworkinfo()['relayfee']
tx_batch_size = 1
num_of_batches = 74
num_of_batches = 73
# Generate UTXOs to flood the mempool
# 1 to create a tx initially that will be evicted from the mempool later
# 74 transactions each with a fee rate higher than the previous one