mirror of
https://github.com/ElementsProject/elements.git
synced 2026-08-13 12:33:42 +02:00
no-rpath in qt dependency
This commit is contained in:
parent
3da0ed810b
commit
e57cfea272
3 changed files with 7 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue