Skip to content

Commit 071473c

Browse files
author
jtimon
committed
Build util and common before building server
1 parent 1bd8a7b commit 071473c

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Makefile.am

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,15 @@ LIBBITCOIN_CRYPTO=crypto/libbitcoin_crypto.a
3636
LIBBITCOIN_UNIVALUE=univalue/libbitcoin_univalue.a
3737
LIBBITCOINQT=qt/libbitcoinqt.a
3838

39+
# Make is not made aware of per-object dependencies to avoid limiting building parallelization
40+
# But to build the less dependent modules first, we manually select their order here:
3941
noinst_LIBRARIES = \
40-
libbitcoin_server.a \
41-
libbitcoin_common.a \
42-
libbitcoin_cli.a \
42+
crypto/libbitcoin_crypto.a \
4343
libbitcoin_util.a \
44+
libbitcoin_common.a \
4445
univalue/libbitcoin_univalue.a \
45-
crypto/libbitcoin_crypto.a
46+
libbitcoin_server.a \
47+
libbitcoin_cli.a
4648
if ENABLE_WALLET
4749
BITCOIN_INCLUDES += $(BDB_CPPFLAGS)
4850
noinst_LIBRARIES += libbitcoin_wallet.a

0 commit comments

Comments
 (0)