2019-12-18 04:37:13 +01:00
AC_PREREQ([2.69])
2024-03-06 15:47:04 +01:00
define(_CLIENT_VERSION_MAJOR, 27)
2020-10-22 19:59:18 +02:00
define(_CLIENT_VERSION_MINOR, 99)
2013-05-28 01:55:01 +02:00
define(_CLIENT_VERSION_BUILD, 0)
2018-10-30 19:54:18 +01:00
define(_CLIENT_VERSION_RC, 0)
2014-03-04 13:30:07 +01:00
define(_CLIENT_VERSION_IS_RELEASE, false)
2023-12-25 12:25:49 +01:00
define(_COPYRIGHT_YEAR, 2024)
2015-12-22 13:29:13 +01:00
define(_COPYRIGHT_HOLDERS,[The %s developers])
2016-02-07 14:06:07 +01:00
define(_COPYRIGHT_HOLDERS_SUBSTITUTION,[[Bitcoin Core]])
2020-10-22 19:59:18 +02:00
AC_INIT([Bitcoin Core],m4_join([.], _CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MINOR, _CLIENT_VERSION_BUILD)m4_if(_CLIENT_VERSION_RC, [0], [], [rc]_CLIENT_VERSION_RC),[https://github.com/bitcoin/bitcoin/issues],[bitcoin],[https://bitcoincore.org/])
2016-12-02 01:06:41 +01:00
AC_CONFIG_SRCDIR([src/validation.cpp])
2014-08-26 11:39:32 +02:00
AC_CONFIG_HEADERS([src/config/bitcoin-config.h])
2014-09-14 01:09:25 +02:00
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([build-aux/m4])
2014-10-14 03:59:59 +02:00
2022-01-12 16:38:35 +01:00
m4_ifndef([PKG_PROG_PKG_CONFIG], [m4_fatal([PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh])])
2020-06-23 08:02:11 +02:00
PKG_PROG_PKG_CONFIG
2021-11-24 13:16:53 +01:00
if test "$PKG_CONFIG" = ""; then
2020-06-23 08:02:11 +02:00
AC_MSG_ERROR([pkg-config not found])
fi
2022-07-24 00:31:01 +02:00
# When compiling with depends, the `PKG_CONFIG_PATH` and `PKG_CONFIG_LIBDIR` variables,
# being set in a `config.site` file, are not exported to let the `--config-cache` option
# work properly.
if test -n "$PKG_CONFIG_PATH"; then
PKG_CONFIG="env PKG_CONFIG_PATH=$PKG_CONFIG_PATH $PKG_CONFIG"
fi
if test -n "$PKG_CONFIG_LIBDIR"; then
PKG_CONFIG="env PKG_CONFIG_LIBDIR=$PKG_CONFIG_LIBDIR $PKG_CONFIG"
fi
2016-04-01 18:19:28 +02:00
BITCOIN_DAEMON_NAME=bitcoind
BITCOIN_GUI_NAME=bitcoin-qt
2022-08-09 10:08:21 +02:00
BITCOIN_TEST_NAME=test_bitcoin
2016-04-01 18:19:28 +02:00
BITCOIN_CLI_NAME=bitcoin-cli
BITCOIN_TX_NAME=bitcoin-tx
2020-09-10 00:09:07 +02:00
BITCOIN_UTIL_NAME=bitcoin-util
2021-09-01 21:46:51 +02:00
BITCOIN_CHAINSTATE_NAME=bitcoin-chainstate
2016-09-16 16:45:36 +02:00
BITCOIN_WALLET_TOOL_NAME=bitcoin-wallet
2020-12-02 18:23:14 +01:00
dnl Multi Process
BITCOIN_MP_NODE_NAME=bitcoin-node
BITCOIN_MP_GUI_NAME=bitcoin-gui
2016-04-01 18:19:28 +02:00
2017-07-07 16:54:11 +02:00
dnl Unless the user specified ARFLAGS, force it to be cr
2022-06-16 12:19:46 +02:00
dnl This is also the default as-of libtool 2.4.7
2021-11-09 07:09:26 +01:00
AC_ARG_VAR([ARFLAGS], [Flags for the archiver, defaults to <cr> if not set])
2021-11-24 13:16:53 +01:00
if test "${ARFLAGS+set}" != "set"; then
2017-07-07 16:54:11 +02:00
ARFLAGS="cr"
fi
2013-05-28 01:55:01 +02:00
AC_CANONICAL_HOST
2014-10-14 03:59:59 +02:00
2013-05-28 01:55:01 +02:00
AH_TOP([#ifndef BITCOIN_CONFIG_H])
AH_TOP([#define BITCOIN_CONFIG_H])
AH_BOTTOM([#endif //BITCOIN_CONFIG_H])
2014-11-06 02:30:59 +01:00
dnl Automake init set-up and checks
2020-03-07 16:38:06 +01:00
AM_INIT_AUTOMAKE([1.13 no-define subdir-objects foreign])
2013-05-28 01:55:01 +02:00
AM_MAINTAINER_MODE([enable])
dnl make the compilation flags quiet unless V=1 is used
2020-03-07 16:38:06 +01:00
AM_SILENT_RULES([yes])
2013-05-28 01:55:01 +02:00
2014-11-06 02:30:59 +01:00
dnl Compiler checks (here before libtool).
2021-11-24 13:16:53 +01:00
if test "${CXXFLAGS+set}" = "set"; then
2014-11-06 02:30:59 +01:00
CXXFLAGS_overridden=yes
else
CXXFLAGS_overridden=no
fi
2014-09-14 01:09:25 +02:00
AC_PROG_CXX
2014-11-06 02:30:59 +01:00
2023-05-12 21:15:56 +02:00
dnl libtool overrides
2014-11-06 02:30:59 +01:00
case $host in
*mingw*)
2023-05-12 21:15:56 +02:00
dnl By default, libtool for mingw refuses to link static libs into a dll for
dnl fear of mixing pic/non-pic objects, and import/export complications. Since
dnl we have those under control, re-enable that functionality.
2014-11-06 02:30:59 +01:00
lt_cv_deplibs_check_method="pass_all"
2022-04-26 18:36:33 +02:00
dnl Remove unwanted -DDLL_EXPORT from these variables.
dnl We do not use this macro, but system headers may export unwanted symbols
dnl if it's set.
lt_cv_prog_compiler_pic="-DPIC"
lt_cv_prog_compiler_pic_CXX="-DPIC"
2014-11-06 02:30:59 +01:00
;;
2023-05-11 00:48:00 +02:00
*darwin*)
dnl Because it prints a verbose warning, lld fails the following check
dnl for "-Wl,-single_module" from libtool.m4:
dnl # If there is a non-empty error log, and "single_module"
dnl # appears in it, assume the flag caused a linker warning
dnl "-single_module" works fine on ld64 and lld, so just bypass the test.
dnl Failure to set this to "yes" causes libtool to use a very broken
dnl link-line for shared libs.
lt_cv_apple_cc_single_mod="yes"
;;
2014-11-06 02:30:59 +01:00
esac
2020-04-11 09:30:43 +02:00
2023-08-27 10:45:39 +02:00
dnl Require C++20 compiler (no GNU extensions)
2022-02-11 13:08:55 +01:00
AX_CXX_COMPILE_STDCXX([20], [noext], [mandatory])
2020-04-11 09:30:43 +02:00
2016-11-15 22:12:17 +01:00
dnl Unless the user specified OBJCXX, force it to be the same as CXX. This ensures
dnl that we get the same -std flags for both.
m4_ifdef([AC_PROG_OBJCXX],[
2021-11-24 13:16:53 +01:00
if test "${OBJCXX+set}" = ""; then
2016-11-15 22:12:17 +01:00
OBJCXX="${CXX}"
fi
AC_PROG_OBJCXX
])
2022-03-23 10:53:58 +01:00
dnl OpenBSD ships with 2.4.2
LT_PREREQ([2.4.2])
2014-11-06 02:30:59 +01:00
dnl Libtool init checks.
2021-11-27 09:20:47 +01:00
LT_INIT([pic-only win32-dll])
2014-11-06 02:30:59 +01:00
dnl Check/return PATH for base programs.
2021-10-07 13:37:10 +02:00
AC_PATH_TOOL([AR], [ar])
AC_PATH_TOOL([GCOV], [gcov])
AC_PATH_TOOL([LLVM_COV], [llvm-cov])
2021-10-07 13:18:14 +02:00
AC_PATH_PROG([LCOV], [lcov])
2023-08-03 15:20:05 +02:00
dnl The minimum supported version is specified in .python-version and should be used if available, see doc/dependencies.md
AC_PATH_PROGS([PYTHON], [python3.9 python3.10 python3.11 python3.12 python3 python])
2021-10-07 13:18:14 +02:00
AC_PATH_PROG([GENHTML], [genhtml])
2014-09-14 01:09:25 +02:00
AC_PATH_PROG([GIT], [git])
2021-10-07 13:18:14 +02:00
AC_PATH_PROG([CCACHE], [ccache])
AC_PATH_PROG([XGETTEXT], [xgettext])
AC_PATH_PROG([HEXDUMP], [hexdump])
2024-01-30 10:37:37 +01:00
AC_PATH_TOOL([OBJDUMP], [objdump])
2021-10-07 13:37:10 +02:00
AC_PATH_TOOL([OBJCOPY], [objcopy])
2021-10-07 13:18:14 +02:00
AC_PATH_PROG([DOXYGEN], [doxygen])
2017-12-26 18:12:04 +01:00
AM_CONDITIONAL([HAVE_DOXYGEN], [test -n "$DOXYGEN"])
2014-11-06 02:30:59 +01:00
2013-11-29 16:50:11 +01:00
AC_ARG_ENABLE([wallet],
2015-10-02 07:44:36 +02:00
[AS_HELP_STRING([--disable-wallet],
[disable wallet (enabled by default)])],
2013-11-29 16:50:11 +01:00
[enable_wallet=$enableval],
2020-10-19 20:17:58 +02:00
[enable_wallet=auto])
2013-11-29 16:50:11 +01:00
2020-10-15 15:50:00 +02:00
AC_ARG_WITH([sqlite],
[AS_HELP_STRING([--with-sqlite=yes|no|auto],
[enable sqlite wallet support (default: auto, i.e., enabled if wallet is enabled and sqlite is found)])],
[use_sqlite=$withval],
[use_sqlite=auto])
2020-10-19 20:17:58 +02:00
AC_ARG_WITH([bdb],
[AS_HELP_STRING([--without-bdb],
[disable bdb wallet support (default is enabled if wallet is enabled)])],
[use_bdb=$withval],
[use_bdb=auto])
2021-12-07 19:19:59 +01:00
AC_ARG_ENABLE([usdt],
[AS_HELP_STRING([--enable-usdt],
[enable tracepoints for Userspace, Statically Defined Tracing (default is yes if sys/sdt.h is found)])],
[use_usdt=$enableval],
[use_usdt=yes])
2020-09-05 16:36:47 +02:00
2013-05-28 01:55:01 +02:00
AC_ARG_WITH([miniupnpc],
[AS_HELP_STRING([--with-miniupnpc],
[enable UPNP (default is yes if libminiupnpc is found)])],
[use_upnp=$withval],
[use_upnp=auto])
2020-02-23 00:34:13 +01:00
AC_ARG_WITH([natpmp],
[AS_HELP_STRING([--with-natpmp],
[enable NAT-PMP (default is yes if libnatpmp is found)])],
[use_natpmp=$withval],
[use_natpmp=auto])
2013-05-28 01:55:01 +02:00
AC_ARG_ENABLE(tests,
2015-10-02 07:44:36 +02:00
AS_HELP_STRING([--disable-tests],[do not compile tests (default is to compile)]),
2013-05-28 01:55:01 +02:00
[use_tests=$enableval],
[use_tests=yes])
2016-03-31 14:50:10 +02:00
AC_ARG_ENABLE(gui-tests,
AS_HELP_STRING([--disable-gui-tests],[do not compile GUI tests (default is to compile if GUI and tests enabled)]),
[use_gui_tests=$enableval],
[use_gui_tests=$use_tests])
Simple benchmarking framework
Benchmarking framework, loosely based on google's micro-benchmarking
library (https://github.com/google/benchmark)
Wny not use the Google Benchmark framework? Because adding Even More Dependencies
isn't worth it. If we get a dozen or three benchmarks and need nanosecond-accurate
timings of threaded code then switching to the full-blown Google Benchmark library
should be considered.
The benchmark framework is hard-coded to run each benchmark for one wall-clock second,
and then spits out .csv-format timing information to stdout. It is left as an
exercise for later (or maybe never) to add command-line arguments to specify which
benchmark(s) to run, how long to run them for, how to format results, etc etc etc.
Again, see the Google Benchmark framework for where that might end up.
See src/bench/MilliSleep.cpp for a sanity-test benchmark that just benchmarks
'sleep 100 milliseconds.'
To compile and run benchmarks:
cd src; make bench
Sample output:
Benchmark,count,min,max,average
Sleep100ms,10,0.101854,0.105059,0.103881
2015-09-24 19:13:38 +02:00
AC_ARG_ENABLE(bench,
2015-10-11 12:47:59 +02:00
AS_HELP_STRING([--disable-bench],[do not compile benchmarks (default is to compile)]),
Simple benchmarking framework
Benchmarking framework, loosely based on google's micro-benchmarking
library (https://github.com/google/benchmark)
Wny not use the Google Benchmark framework? Because adding Even More Dependencies
isn't worth it. If we get a dozen or three benchmarks and need nanosecond-accurate
timings of threaded code then switching to the full-blown Google Benchmark library
should be considered.
The benchmark framework is hard-coded to run each benchmark for one wall-clock second,
and then spits out .csv-format timing information to stdout. It is left as an
exercise for later (or maybe never) to add command-line arguments to specify which
benchmark(s) to run, how long to run them for, how to format results, etc etc etc.
Again, see the Google Benchmark framework for where that might end up.
See src/bench/MilliSleep.cpp for a sanity-test benchmark that just benchmarks
'sleep 100 milliseconds.'
To compile and run benchmarks:
cd src; make bench
Sample output:
Benchmark,count,min,max,average
Sleep100ms,10,0.101854,0.105059,0.103881
2015-09-24 19:13:38 +02:00
[use_bench=$enableval],
[use_bench=yes])
2017-03-09 15:55:12 +01:00
AC_ARG_ENABLE([extended-functional-tests],
AS_HELP_STRING([--enable-extended-functional-tests],[enable expensive functional tests when using lcov (default no)]),
[use_extended_functional_tests=$enableval],
[use_extended_functional_tests=no])
2015-10-12 14:37:57 +02:00
2019-01-26 00:35:36 +01:00
AC_ARG_ENABLE([fuzz],
2019-07-04 21:43:32 +02:00
AS_HELP_STRING([--enable-fuzz],
2021-01-24 17:09:24 +01:00
[build for fuzzing (default no). enabling this will disable all other targets and override --{enable,disable}-fuzz-binary]),
2019-01-26 00:35:36 +01:00
[enable_fuzz=$enableval],
[enable_fuzz=no])
2021-01-24 17:09:24 +01:00
AC_ARG_ENABLE([fuzz-binary],
AS_HELP_STRING([--enable-fuzz-binary],
[enable building of fuzz binary (default yes).]),
[enable_fuzz_binary=$enableval],
[enable_fuzz_binary=yes])
2013-05-28 01:55:01 +02:00
AC_ARG_WITH([qrencode],
[AS_HELP_STRING([--with-qrencode],
[enable QR code support (default is yes if qt is enabled and libqrencode is found)])],
[use_qr=$withval],
[use_qr=auto])
AC_ARG_ENABLE([hardening],
2015-10-02 07:44:36 +02:00
[AS_HELP_STRING([--disable-hardening],
2018-02-07 05:58:41 +01:00
[do not attempt to harden the resulting executables (default is to harden when possible)])],
2013-05-28 01:55:01 +02:00
[use_hardening=$enableval],
2018-02-07 05:58:41 +01:00
[use_hardening=auto])
2013-05-28 01:55:01 +02:00
2014-08-18 21:55:54 +02:00
AC_ARG_ENABLE([reduce-exports],
[AS_HELP_STRING([--enable-reduce-exports],
2015-02-23 23:48:57 +01:00
[attempt to reduce exported symbols in the resulting executables (default is no)])],
2014-08-18 21:55:54 +02:00
[use_reduce_exports=$enableval],
2015-02-23 23:48:57 +01:00
[use_reduce_exports=no])
2014-08-18 21:55:54 +02:00
2013-05-28 01:55:01 +02:00
AC_ARG_ENABLE([ccache],
2015-10-02 07:44:36 +02:00
[AS_HELP_STRING([--disable-ccache],
[do not use ccache for building (default is to use if found)])],
2013-05-28 01:55:01 +02:00
[use_ccache=$enableval],
[use_ccache=auto])
2020-04-23 21:09:46 +02:00
dnl Suppress warnings from external headers (e.g. Boost, Qt).
dnl May be useful if warnings from external headers clutter the build output
dnl too much, so that it becomes difficult to spot Bitcoin Core warnings
dnl or if they cause a build failure with --enable-werror.
AC_ARG_ENABLE([suppress-external-warnings],
2023-06-12 14:56:36 +02:00
[AS_HELP_STRING([--disable-suppress-external-warnings],
[Do not suppress warnings from external headers (default is to suppress)])],
2020-04-23 21:09:46 +02:00
[suppress_external_warnings=$enableval],
2023-06-12 14:56:36 +02:00
[suppress_external_warnings=yes])
2020-04-23 21:09:46 +02:00
2013-05-28 01:55:01 +02:00
AC_ARG_ENABLE([lcov],
[AS_HELP_STRING([--enable-lcov],
[enable lcov testing (default is no)])],
2017-11-05 07:10:33 +01:00
[use_lcov=$enableval],
2013-05-28 01:55:01 +02:00
[use_lcov=no])
2017-12-31 20:33:09 +01:00
2017-06-02 23:13:08 +02:00
AC_ARG_ENABLE([lcov-branch-coverage],
[AS_HELP_STRING([--enable-lcov-branch-coverage],
[enable lcov testing branch coverage (default is no)])],
[use_lcov_branch=yes],
[use_lcov_branch=no])
2013-05-28 01:55:01 +02:00
2014-11-18 18:06:32 +01:00
AC_ARG_ENABLE([zmq],
2015-09-16 16:25:51 +02:00
[AS_HELP_STRING([--disable-zmq],
2015-09-30 08:40:20 +02:00
[disable ZMQ notifications])],
2014-11-18 18:06:32 +01:00
[use_zmq=$enableval],
[use_zmq=yes])
2019-10-12 18:49:29 +02:00
2019-07-10 19:46:31 +02:00
AC_ARG_WITH([libmultiprocess],
[AS_HELP_STRING([--with-libmultiprocess=yes|no|auto],
[Build with libmultiprocess library. (default: auto, i.e. detect with pkg-config)])],
[with_libmultiprocess=$withval],
[with_libmultiprocess=auto])
AC_ARG_WITH([mpgen],
[AS_HELP_STRING([--with-mpgen=yes|no|auto|PREFIX],
[Build with libmultiprocess codegen tool. Useful to specify different libmultiprocess host system library and build system codegen tool prefixes when cross-compiling (default is host system libmultiprocess prefix)])],
[with_mpgen=$withval],
[with_mpgen=auto])
AC_ARG_ENABLE([multiprocess],
[AS_HELP_STRING([--enable-multiprocess],
[build multiprocess bitcoin-node, bitcoin-wallet, and bitcoin-gui executables in addition to monolithic bitcoind and bitcoin-qt executables. Requires libmultiprocess library. Experimental (default is no)])],
[enable_multiprocess=$enableval],
[enable_multiprocess=no])
2016-08-27 01:12:41 +02:00
AC_ARG_ENABLE(man,
2016-08-28 02:46:36 +02:00
[AS_HELP_STRING([--disable-man],
[do not install man pages (default is to install)])],,
2016-08-27 01:12:41 +02:00
enable_man=yes)
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([ENABLE_MAN], [test "$enable_man" != "no"])
2016-08-27 01:12:41 +02:00
2019-12-10 14:35:33 +01:00
dnl Enable debug
2014-03-04 06:52:42 +01:00
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug],
2019-07-22 17:06:01 +02:00
[use compiler flags and macros suited for debugging (default is no)])],
2014-03-04 06:52:42 +01:00
[enable_debug=$enableval],
[enable_debug=no])
2019-12-10 14:35:33 +01:00
dnl Enable different -fsanitize options
2018-03-15 04:07:16 +01:00
AC_ARG_WITH([sanitizers],
[AS_HELP_STRING([--with-sanitizers],
[comma separated list of extra sanitizers to build with (default is none enabled)])],
[use_sanitizers=$withval])
2019-12-10 14:35:33 +01:00
dnl Enable gprof profiling
2018-02-07 05:58:41 +01:00
AC_ARG_ENABLE([gprof],
[AS_HELP_STRING([--enable-gprof],
[use gprof profiling compiler flags (default is no)])],
[enable_gprof=$enableval],
[enable_gprof=no])
2019-12-10 14:35:33 +01:00
dnl Turn warnings into errors
2017-02-21 17:56:26 +01:00
AC_ARG_ENABLE([werror],
[AS_HELP_STRING([--enable-werror],
2021-09-30 08:23:16 +02:00
[Treat compiler warnings as errors (default is no)])],
2017-02-21 17:56:26 +01:00
[enable_werror=$enableval],
[enable_werror=no])
2019-10-30 20:08:23 +01:00
AC_ARG_ENABLE([external-signer],
2023-03-12 19:03:40 +01:00
[AS_HELP_STRING([--enable-external-signer],[compile external signer support (default is yes)])],
2019-10-30 20:08:23 +01:00
[use_external_signer=$enableval],
2023-03-12 19:03:40 +01:00
[use_external_signer=yes])
2021-02-15 08:53:02 +01:00
build: quiet annoying warnings without adding new ones
Disabling warnings can be tricky, because doing so can cause a different
compiler to create new warnings about unsupported disable flags. Also, some
warnings don't surface until they're paired with another warning (gcc). For
example, adding "-Wno-foo" won't cause any trouble, but if there's a legitimate
warning emitted, the "unknown option -Wno-foo" will show up as well.
Work around this in 2 ways:
1. When checking to see if -Wno-foo is supported, check for "-Wfoo" instead.
2. Enable -Werror while checking 1.
If "-Werror -Wfoo" compiles, "-Wno-foo" is almost guaranteed to be supported.
-Werror itself is also checked. If that fails to compile by itself, it likely
means that the user added a flag that adds a warning. In that case, -Werror
won't be used while checking, and the build may be extra noisy. The user would
need to fix the bad input flag.
Also, silence 2 more additional warnings that can show up post-c++11.
2016-03-09 22:45:58 +01:00
AC_LANG_PUSH([C++])
2019-12-02 21:35:27 +01:00
2024-01-08 14:59:18 +01:00
dnl Always set -g -O2 in our CXXFLAGS. Autoconf will try and set CXXFLAGS to "-g -O2" by default,
dnl so we suppress that (if CXXFLAGS hasn't been overridden by the user), given we are adding it
dnl ourselves.
CORE_CXXFLAGS="$CORE_CXXFLAGS -g -O2"
if test "$CXXFLAGS_overridden" = "no"; then
CXXFLAGS=""
fi
2019-12-02 21:35:27 +01:00
dnl Check for a flag to turn compiler warnings into errors. This is helpful for checks which may
dnl appear to succeed because by default they merely emit warnings when they fail.
dnl
dnl Note that this is not necessarily a check to see if -Werror is supported, but rather to see if
dnl a compile with -Werror can succeed. This is important because the compiler may already be
dnl warning about something unrelated, for example about some path issue. If that is the case,
dnl -Werror cannot be used because all of those warnings would be turned into errors.
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-Werror], [CXXFLAG_WERROR="-Werror"], [CXXFLAG_WERROR=""])
build: quiet annoying warnings without adding new ones
Disabling warnings can be tricky, because doing so can cause a different
compiler to create new warnings about unsupported disable flags. Also, some
warnings don't surface until they're paired with another warning (gcc). For
example, adding "-Wno-foo" won't cause any trouble, but if there's a legitimate
warning emitted, the "unknown option -Wno-foo" will show up as well.
Work around this in 2 ways:
1. When checking to see if -Wno-foo is supported, check for "-Wfoo" instead.
2. Enable -Werror while checking 1.
If "-Werror -Wfoo" compiles, "-Wno-foo" is almost guaranteed to be supported.
-Werror itself is also checked. If that fails to compile by itself, it likely
means that the user added a flag that adds a warning. In that case, -Werror
won't be used while checking, and the build may be extra noisy. The user would
need to fix the bad input flag.
Also, silence 2 more additional warnings that can show up post-c++11.
2016-03-09 22:45:58 +01:00
2019-12-02 21:35:27 +01:00
dnl Check for a flag to turn linker warnings into errors. When flags are passed to linkers via the
dnl compiler driver using a -Wl,-foo flag, linker warnings may be swallowed rather than bubbling up.
dnl See note above, the same applies here as well.
dnl
dnl LDFLAG_WERROR Should only be used when testing -Wl,*
case $host in
*darwin*)
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-Wl,-fatal_warnings], [LDFLAG_WERROR="-Wl,-fatal_warnings"], [LDFLAG_WERROR=""])
2019-12-02 21:35:27 +01:00
;;
*)
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-Wl,--fatal-warnings], [LDFLAG_WERROR="-Wl,--fatal-warnings"], [LDFLAG_WERROR=""])
2019-12-02 21:35:27 +01:00
;;
esac
2021-11-24 13:16:53 +01:00
if test "$enable_debug" = "yes"; then
2019-07-22 17:06:01 +02:00
2019-12-10 14:35:33 +01:00
dnl Disable all optimizations
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-O0], [DEBUG_CXXFLAGS="$DEBUG_CXXFLAGS -O0"], [], [$CXXFLAG_WERROR])
2015-09-29 19:18:07 +02:00
2019-12-10 14:35:33 +01:00
dnl Prefer -g3, fall back to -g if that is unavailable.
2018-03-15 13:05:48 +01:00
AX_CHECK_COMPILE_FLAG(
[-g3],
2021-09-02 15:04:47 +02:00
[DEBUG_CXXFLAGS="$DEBUG_CXXFLAGS -g3"],
[AX_CHECK_COMPILE_FLAG([-g], [DEBUG_CXXFLAGS="$DEBUG_CXXFLAGS -g"], [], [$CXXFLAG_WERROR])],
[$CXXFLAG_WERROR])
2018-03-15 13:05:48 +01:00
2021-09-02 15:08:41 +02:00
AX_CHECK_PREPROC_FLAG([-DDEBUG], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DDEBUG"], [], [$CXXFLAG_WERROR])
AX_CHECK_PREPROC_FLAG([-DDEBUG_LOCKORDER], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DDEBUG_LOCKORDER"], [], [$CXXFLAG_WERROR])
2022-04-04 13:10:10 +02:00
AX_CHECK_PREPROC_FLAG([-DDEBUG_LOCKCONTENTION], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DDEBUG_LOCKCONTENTION"], [], [$CXXFLAG_WERROR])
2022-05-19 08:03:19 +02:00
AX_CHECK_PREPROC_FLAG([-DRPC_DOC_CHECK], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DRPC_DOC_CHECK"], [], [$CXXFLAG_WERROR])
2021-09-02 15:08:41 +02:00
AX_CHECK_PREPROC_FLAG([-DABORT_ON_FAILED_ASSUME], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DABORT_ON_FAILED_ASSUME"], [], [$CXXFLAG_WERROR])
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-ftrapv], [DEBUG_CXXFLAGS="$DEBUG_CXXFLAGS -ftrapv"], [], [$CXXFLAG_WERROR])
2015-09-29 19:18:07 +02:00
fi
2014-03-04 06:52:42 +01:00
2021-11-24 13:16:53 +01:00
if test "$use_sanitizers" != ""; then
2019-12-10 14:35:33 +01:00
dnl First check if the compiler accepts flags. If an incompatible pair like
dnl -fsanitize=address,thread is used here, this check will fail. This will also
dnl fail if a bad argument is passed, e.g. -fsanitize=undfeined
2018-03-15 04:07:16 +01:00
AX_CHECK_COMPILE_FLAG(
2021-09-02 15:04:47 +02:00
[-fsanitize=$use_sanitizers],
2024-01-19 11:08:41 +01:00
[SANITIZER_CXXFLAGS="-fsanitize=$use_sanitizers"
SANITIZER_CFLAGS="-fsanitize=$use_sanitizers"],
2018-03-15 04:07:16 +01:00
[AC_MSG_ERROR([compiler did not accept requested flags])])
2019-12-10 14:35:33 +01:00
dnl Some compilers (e.g. GCC) require additional libraries like libasan,
dnl libtsan, libubsan, etc. Make sure linking still works with the sanitize
dnl flag. This is a separate check so we can give a better error message when
dnl the sanitize flags are supported by the compiler but the actual sanitizer
dnl libs are missing.
2018-03-15 04:07:16 +01:00
AX_CHECK_LINK_FLAG(
2021-09-02 14:42:14 +02:00
[-fsanitize=$use_sanitizers],
[SANITIZER_LDFLAGS="-fsanitize=$use_sanitizers"],
2018-12-27 15:19:39 +01:00
[AC_MSG_ERROR([linker did not accept requested flags, you are missing required libraries])],
[],
[AC_LANG_PROGRAM([[
#include <cstdint>
#include <cstddef>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { return 0; }
__attribute__((weak)) // allow for libFuzzer linking
]],[[]])])
2018-03-15 04:07:16 +01:00
fi
2017-02-21 17:56:26 +01:00
ERROR_CXXFLAGS=
2021-11-24 13:16:53 +01:00
if test "$enable_werror" = "yes"; then
if test "$CXXFLAG_WERROR" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([enable-werror set but -Werror is not usable])
2017-02-21 17:56:26 +01:00
fi
2021-09-30 08:23:16 +02:00
ERROR_CXXFLAGS=$CXXFLAG_WERROR
2017-02-21 17:56:26 +01:00
fi
2022-08-15 15:59:05 +02:00
AX_CHECK_COMPILE_FLAG([-Wall], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wall"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wextra], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wextra"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wgnu], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wgnu"], [], [$CXXFLAG_WERROR])
dnl some compilers will ignore -Wformat-security without -Wformat, so just combine the two here.
AX_CHECK_COMPILE_FLAG([-Wformat -Wformat-security], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wformat -Wformat-security"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wvla], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wvla"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wshadow-field], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wshadow-field"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wthread-safety], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wthread-safety"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wloop-analysis], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wloop-analysis"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wredundant-decls], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wredundant-decls"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wunused-member-function], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wunused-member-function"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wdate-time], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wdate-time"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wconditional-uninitialized], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wconditional-uninitialized"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wduplicated-branches], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wduplicated-branches"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wduplicated-cond], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wduplicated-cond"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wlogical-op], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wlogical-op"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Woverloaded-virtual], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Woverloaded-virtual"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wsuggest-override], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wsuggest-override"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wimplicit-fallthrough], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wimplicit-fallthrough"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wunreachable-code], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wunreachable-code"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wdocumentation], [WARN_CXXFLAGS="$WARN_CXXFLAGS -Wdocumentation"], [], [$CXXFLAG_WERROR])
dnl Some compilers (gcc) ignore unknown -Wno-* options, but warn about all
dnl unknown options if any other warning is produced. Test the -Wfoo case, and
dnl set the -Wno-foo case if it works.
AX_CHECK_COMPILE_FLAG([-Wunused-parameter], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-unused-parameter"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-Wself-assign], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-self-assign"], [], [$CXXFLAG_WERROR])
if test "$suppress_external_warnings" != "yes" ; then
AX_CHECK_COMPILE_FLAG([-Wdeprecated-copy], [NOWARN_CXXFLAGS="$NOWARN_CXXFLAGS -Wno-deprecated-copy"], [], [$CXXFLAG_WERROR])
2013-09-08 22:30:24 +02:00
fi
2017-07-12 18:58:20 +02:00
2020-05-28 19:06:01 +02:00
dnl Don't allow extended (non-ASCII) symbols in identifiers. This is easier for code review.
2022-02-17 17:16:52 +01:00
AX_CHECK_COMPILE_FLAG([-fno-extended-identifiers], [CORE_CXXFLAGS="$CORE_CXXFLAGS -fno-extended-identifiers"], [], [$CXXFLAG_WERROR])
2020-05-28 19:06:01 +02:00
2023-10-18 14:55:54 +02:00
dnl Currently all versions of gcc are subject to a class of bugs, see the
dnl gccbug_90348 test case (only reproduces on GCC 11 and earlier) and
dnl https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111843. To work around that, set
dnl -fstack-reuse=none for all gcc builds. (Only gcc understands this flag)
AX_CHECK_COMPILE_FLAG([-fstack-reuse=none], [CORE_CXXFLAGS="$CORE_CXXFLAGS -fstack-reuse=none"])
2022-05-02 04:31:00 +02:00
enable_arm_crc=no
enable_arm_shani=no
2019-11-07 15:52:44 +01:00
enable_sse42=no
2018-07-27 19:26:43 +02:00
enable_sse41=no
enable_avx2=no
2022-01-20 17:26:00 +01:00
enable_x86_shani=no
2018-07-27 19:26:43 +02:00
2019-12-10 14:35:33 +01:00
dnl Check for optional instruction set support. Enabling these does _not_ imply that all code will
dnl be compiled with them, rather that specific objects/libs may use them after checking for runtime
dnl compatibility.
2019-11-07 15:52:44 +01:00
dnl x86
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-msse4.2], [SSE42_CXXFLAGS="-msse4.2"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-msse4.1], [SSE41_CXXFLAGS="-msse4.1"], [], [$CXXFLAG_WERROR])
AX_CHECK_COMPILE_FLAG([-mavx -mavx2], [AVX2_CXXFLAGS="-mavx -mavx2"], [], [$CXXFLAG_WERROR])
2022-01-20 17:26:00 +01:00
AX_CHECK_COMPILE_FLAG([-msse4 -msha], [X86_SHANI_CXXFLAGS="-msse4 -msha"], [], [$CXXFLAG_WERROR])
2017-08-04 21:43:01 +02:00
2021-07-20 20:18:43 +02:00
enable_clmul=
AX_CHECK_COMPILE_FLAG([-mpclmul], [enable_clmul=yes], [], [$CXXFLAG_WERROR], [AC_LANG_PROGRAM([
#include <stdint.h>
#include <x86intrin.h>
], [
__m128i a = _mm_cvtsi64_si128((uint64_t)7);
__m128i b = _mm_clmulepi64_si128(a, a, 37);
__m128i c = _mm_srli_epi64(b, 41);
__m128i d = _mm_xor_si128(b, c);
uint64_t e = _mm_cvtsi128_si64(d);
return e == 0;
])])
2021-11-24 13:16:53 +01:00
if test "$enable_clmul" = "yes"; then
2021-07-20 20:18:43 +02:00
CLMUL_CXXFLAGS="-mpclmul"
2021-11-09 07:03:42 +01:00
AC_DEFINE([HAVE_CLMUL], [1], [Define this symbol if clmul instructions can be used])
2021-07-20 20:18:43 +02:00
fi
2017-07-12 18:58:20 +02:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$SSE42_CXXFLAGS $CXXFLAGS"
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for SSE4.2 intrinsics])
2017-07-12 18:58:20 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <stdint.h>
#if defined(_MSC_VER)
#include <intrin.h>
#elif defined(__GNUC__) && defined(__SSE4_2__)
#include <nmmintrin.h>
#endif
]],[[
uint64_t l = 0;
l = _mm_crc32_u8(l, 0);
l = _mm_crc32_u32(l, 0);
l = _mm_crc32_u64(l, 0);
return l;
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); enable_sse42=yes],
[ AC_MSG_RESULT([no])]
2017-07-12 18:58:20 +02:00
)
CXXFLAGS="$TEMP_CXXFLAGS"
2018-05-08 19:27:57 +02:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$SSE41_CXXFLAGS $CXXFLAGS"
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for SSE4.1 intrinsics])
2018-05-08 19:27:57 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <stdint.h>
#include <immintrin.h>
]],[[
__m128i l = _mm_set1_epi32(0);
return _mm_extract_epi32(l, 3);
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); enable_sse41=yes; AC_DEFINE([ENABLE_SSE41], [1], [Define this symbol to build code that uses SSE4.1 intrinsics]) ],
[ AC_MSG_RESULT([no])]
2018-05-08 19:27:57 +02:00
)
CXXFLAGS="$TEMP_CXXFLAGS"
2017-09-27 10:45:12 +02:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$AVX2_CXXFLAGS $CXXFLAGS"
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for AVX2 intrinsics])
2017-09-27 10:45:12 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <stdint.h>
#include <immintrin.h>
]],[[
__m256i l = _mm256_set1_epi32(0);
return _mm256_extract_epi32(l, 7);
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); enable_avx2=yes; AC_DEFINE([ENABLE_AVX2], [1], [Define this symbol to build code that uses AVX2 intrinsics]) ],
[ AC_MSG_RESULT([no])]
2017-09-27 10:45:12 +02:00
)
CXXFLAGS="$TEMP_CXXFLAGS"
2018-06-24 19:50:40 +02:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$X86_SHANI_CXXFLAGS $CXXFLAGS"
2022-01-20 17:26:00 +01:00
AC_MSG_CHECKING([for x86 SHA-NI intrinsics])
2018-06-24 19:50:40 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <stdint.h>
#include <immintrin.h>
]],[[
__m128i i = _mm_set1_epi32(0);
__m128i j = _mm_set1_epi32(1);
__m128i k = _mm_set1_epi32(2);
return _mm_extract_epi32(_mm_sha256rnds2_epu32(i, i, k), 0);
]])],
2022-01-20 17:26:00 +01:00
[ AC_MSG_RESULT([yes]); enable_x86_shani=yes; AC_DEFINE([ENABLE_X86_SHANI], [1], [Define this symbol to build code that uses x86 SHA-NI intrinsics]) ],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([no])]
2018-06-24 19:50:40 +02:00
)
CXXFLAGS="$TEMP_CXXFLAGS"
2019-11-07 15:52:44 +01:00
# ARM
2023-11-20 14:37:44 +01:00
AX_CHECK_COMPILE_FLAG([-march=armv8-a+crc+crypto], [ARM_CRC_CXXFLAGS="-march=armv8-a+crc+crypto"], [], [$CXXFLAG_WERROR])
2022-09-25 17:02:57 +02:00
AX_CHECK_COMPILE_FLAG([-march=armv8-a+crypto], [ARM_SHANI_CXXFLAGS="-march=armv8-a+crypto"], [], [$CXXFLAG_WERROR])
2019-11-07 15:52:44 +01:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$ARM_CRC_CXXFLAGS $CXXFLAGS"
2022-01-20 18:57:27 +01:00
AC_MSG_CHECKING([for ARMv8 CRC32 intrinsics])
2019-11-07 15:52:44 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <arm_acle.h>
#include <arm_neon.h>
]],[[
2021-09-20 12:19:38 +02:00
#ifdef __aarch64__
2019-11-07 15:52:44 +01:00
__crc32cb(0, 0); __crc32ch(0, 0); __crc32cw(0, 0); __crc32cd(0, 0);
vmull_p64(0, 0);
2021-09-20 12:19:38 +02:00
#else
#error "crc32c library does not support hardware acceleration on 32-bit ARM"
#endif
2019-11-07 15:52:44 +01:00
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); enable_arm_crc=yes; ],
[ AC_MSG_RESULT([no])]
2019-11-07 15:52:44 +01:00
)
CXXFLAGS="$TEMP_CXXFLAGS"
2022-01-20 18:57:27 +01:00
TEMP_CXXFLAGS="$CXXFLAGS"
2022-08-15 14:10:26 +02:00
CXXFLAGS="$ARM_SHANI_CXXFLAGS $CXXFLAGS"
2022-01-20 18:57:27 +01:00
AC_MSG_CHECKING([for ARMv8 SHA-NI intrinsics])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <arm_acle.h>
#include <arm_neon.h>
]],[[
uint32x4_t a, b, c;
vsha256h2q_u32(a, b, c);
vsha256hq_u32(a, b, c);
vsha256su0q_u32(a, b);
vsha256su1q_u32(a, b, c);
]])],
[ AC_MSG_RESULT([yes]); enable_arm_shani=yes; AC_DEFINE([ENABLE_ARM_SHANI], [1], [Define this symbol to build code that uses ARMv8 SHA-NI intrinsics]) ],
[ AC_MSG_RESULT([no])]
)
CXXFLAGS="$TEMP_CXXFLAGS"
2022-02-17 12:31:36 +01:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -DHAVE_BUILD_INFO"
2013-05-28 01:55:01 +02:00
2015-01-06 14:12:39 +01:00
AC_ARG_WITH([utils],
[AS_HELP_STRING([--with-utils],
2020-09-10 00:09:07 +02:00
[build bitcoin-cli bitcoin-tx bitcoin-util bitcoin-wallet (default=yes)])],
2015-01-06 14:12:39 +01:00
[build_bitcoin_utils=$withval],
[build_bitcoin_utils=yes])
2014-12-25 12:43:52 +01:00
AC_ARG_ENABLE([util-cli],
[AS_HELP_STRING([--enable-util-cli],
[build bitcoin-cli])],
[build_bitcoin_cli=$enableval],
[build_bitcoin_cli=$build_bitcoin_utils])
AC_ARG_ENABLE([util-tx],
[AS_HELP_STRING([--enable-util-tx],
[build bitcoin-tx])],
[build_bitcoin_tx=$enableval],
[build_bitcoin_tx=$build_bitcoin_utils])
2016-09-16 16:45:36 +02:00
AC_ARG_ENABLE([util-wallet],
[AS_HELP_STRING([--enable-util-wallet],
[build bitcoin-wallet])],
[build_bitcoin_wallet=$enableval],
[build_bitcoin_wallet=$build_bitcoin_utils])
2020-09-10 00:09:07 +02:00
AC_ARG_ENABLE([util-util],
[AS_HELP_STRING([--enable-util-util],
[build bitcoin-util])],
[build_bitcoin_util=$enableval],
[build_bitcoin_util=$build_bitcoin_utils])
2021-09-01 21:46:51 +02:00
AC_ARG_ENABLE([experimental-util-chainstate],
[AS_HELP_STRING([--enable-experimental-util-chainstate],
[build experimental bitcoin-chainstate executable (default=no)])],
[build_bitcoin_chainstate=$enableval],
[build_bitcoin_chainstate=no])
build: Extract the libbitcoinkernel library
I strongly recommend reviewing with the following git-diff flags:
--patience --color-moved=dimmed-zebra
Extract out a libbitcoinkernel library linking in all files necessary
for using our consensus engine as-is. Link bitcoin-chainstate against
it.
See previous commit "build: Add example bitcoin-chainstate executable"
for more context.
We explicitly specify -fvisibility=default, which effectively overrides
the effects of --enable-reduced-exports since libbitcoinkernel requires
default symbol visibility
When compiling for mingw-w64, specify -static in both:
- ..._la_CXXFLAGS so that libtool will avoid building two versions of
each object (one PIC, one non-PIC). We just need the one that is
suitable for static linking.
- ..._la_LDFLAGS so that libtool will create a static library.
If we don't specify this, then libtool will prefer the non-static PIC
version of the object, which is built with -DDLL_EXPORT -DPIC for
mingw-w64 targets. This can cause symbol resolution problems when we
link this library against an executable that does specify -all-static,
since that will be built without the -DDLL_EXPORT flag.
Unfortunately, this means that for mingw-w64 we can only build a static
version of the library for now. This will be fixed.
However, on other targets, the shared library creation works fine.
-----
Note to users: You need to either specify:
--enable-experimental-util-chainstate
or,
--with-experimental-kernel-lib
To build the libbitcionkernel library. See the configure help for more
details.
build shared libbitcoinkernel where we can
2021-12-22 02:10:05 +01:00
AC_ARG_WITH([experimental-kernel-lib],
[AS_HELP_STRING([--with-experimental-kernel-lib],
2024-03-11 13:12:12 +01:00
[build experimental bitcoinkernel library (default is to build if we're building the experimental build-chainstate executable)])],
build: Extract the libbitcoinkernel library
I strongly recommend reviewing with the following git-diff flags:
--patience --color-moved=dimmed-zebra
Extract out a libbitcoinkernel library linking in all files necessary
for using our consensus engine as-is. Link bitcoin-chainstate against
it.
See previous commit "build: Add example bitcoin-chainstate executable"
for more context.
We explicitly specify -fvisibility=default, which effectively overrides
the effects of --enable-reduced-exports since libbitcoinkernel requires
default symbol visibility
When compiling for mingw-w64, specify -static in both:
- ..._la_CXXFLAGS so that libtool will avoid building two versions of
each object (one PIC, one non-PIC). We just need the one that is
suitable for static linking.
- ..._la_LDFLAGS so that libtool will create a static library.
If we don't specify this, then libtool will prefer the non-static PIC
version of the object, which is built with -DDLL_EXPORT -DPIC for
mingw-w64 targets. This can cause symbol resolution problems when we
link this library against an executable that does specify -all-static,
since that will be built without the -DDLL_EXPORT flag.
Unfortunately, this means that for mingw-w64 we can only build a static
version of the library for now. This will be fixed.
However, on other targets, the shared library creation works fine.
-----
Note to users: You need to either specify:
--enable-experimental-util-chainstate
or,
--with-experimental-kernel-lib
To build the libbitcionkernel library. See the configure help for more
details.
build shared libbitcoinkernel where we can
2021-12-22 02:10:05 +01:00
[build_experimental_kernel_lib=$withval],
[build_experimental_kernel_lib=auto])
2015-01-06 14:12:39 +01:00
AC_ARG_WITH([daemon],
[AS_HELP_STRING([--with-daemon],
[build bitcoind daemon (default=yes)])],
[build_bitcoind=$withval],
[build_bitcoind=yes])
2013-05-28 01:55:01 +02:00
case $host in
*mingw*)
TARGET_OS=windows
2021-11-10 05:13:32 +01:00
AC_CHECK_LIB([kernel32], [GetModuleFileNameA], [], [AC_MSG_ERROR([libkernel32 missing])])
AC_CHECK_LIB([user32], [main], [], [AC_MSG_ERROR([libuser32 missing])])
AC_CHECK_LIB([gdi32], [main], [], [AC_MSG_ERROR([libgdi32 missing])])
AC_CHECK_LIB([comdlg32], [main], [], [AC_MSG_ERROR([libcomdlg32 missing])])
AC_CHECK_LIB([winmm], [main], [], [AC_MSG_ERROR([libwinmm missing])])
AC_CHECK_LIB([shell32], [SHGetSpecialFolderPathW], [], [AC_MSG_ERROR([libshell32 missing])])
AC_CHECK_LIB([comctl32], [main], [], [AC_MSG_ERROR([libcomctl32 missing])])
AC_CHECK_LIB([ole32], [CoCreateInstance], [], [AC_MSG_ERROR([libole32 missing])])
AC_CHECK_LIB([oleaut32], [main], [], [AC_MSG_ERROR([liboleaut32 missing])])
AC_CHECK_LIB([uuid], [main], [], [AC_MSG_ERROR([libuuid missing])])
AC_CHECK_LIB([advapi32], [CryptAcquireContextW], [], [AC_MSG_ERROR([libadvapi32 missing])])
AC_CHECK_LIB([ws2_32], [WSAStartup], [], [AC_MSG_ERROR([libws2_32 missing])])
AC_CHECK_LIB([shlwapi], [PathRemoveFileSpecW], [], [AC_MSG_ERROR([libshlwapi missing])])
AC_CHECK_LIB([iphlpapi], [GetAdaptersAddresses], [], [AC_MSG_ERROR([libiphlpapi missing])])
2013-09-25 23:58:18 +02:00
2019-12-10 14:35:33 +01:00
dnl -static is interpreted by libtool, where it has a different meaning.
dnl In libtool-speak, it's -all-static.
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-static], [LIBTOOL_APP_LDFLAGS="$LIBTOOL_APP_LDFLAGS -all-static"])
2014-07-08 21:53:53 +02:00
2021-10-07 13:18:14 +02:00
AC_PATH_PROG([MAKENSIS], [makensis], [none])
2021-11-24 13:16:53 +01:00
if test "$MAKENSIS" = "none"; then
2021-11-10 05:09:11 +01:00
AC_MSG_WARN([makensis not found. Cannot create installer.])
2013-05-28 01:55:01 +02:00
fi
2021-10-07 13:37:10 +02:00
AC_PATH_TOOL([WINDRES], [windres], [none])
2021-11-24 13:16:53 +01:00
if test "$WINDRES" = "none"; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([windres not found])
2013-09-18 23:39:18 +02:00
fi
2023-07-18 11:27:25 +02:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -DSECP256K1_STATIC"
2022-02-17 12:31:36 +01:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -D_MT -DWIN32 -D_WINDOWS -D_WIN32_WINNT=0x0601 -D_WIN32_IE=0x0501 -DWIN32_LEAN_AND_MEAN"
2022-06-20 12:43:21 +02:00
dnl Prevent the definition of min/max macros.
dnl We always want to use the standard library.
CORE_CPPFLAGS="$CORE_CPPFLAGS -DNOMINMAX"
2014-11-18 21:49:56 +01:00
dnl libtool insists upon adding -nostdlib and a list of objects/libs to link against.
dnl That breaks our ability to build dll's with static libgcc/libstdc++/libssp. Override
dnl its command here, with the predeps/postdeps removed, and -static inserted. Postdeps are
dnl also overridden to prevent their insertion later.
dnl This should only affect dll's.
archive_cmds_CXX="\$CC -shared \$libobjs \$deplibs \$compiler_flags -static -o \$output_objdir/\$soname \${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker \$lib"
postdeps_CXX=
2020-05-12 09:44:52 +02:00
dnl We require Windows 7 (NT 6.1) or later
2022-02-17 12:43:30 +01:00
AX_CHECK_LINK_FLAG([-Wl,--major-subsystem-version -Wl,6 -Wl,--minor-subsystem-version -Wl,1], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,--major-subsystem-version -Wl,6 -Wl,--minor-subsystem-version -Wl,1"], [], [$LDFLAG_WERROR])
build: use -muse-unaligned-vector-move for Windows
We currently work around a longstanding GCC issue with aligned vector
instructions, in our release builds, by patching the behaviour we want
into GCC (see discussion in #24736).
A new option now exists in the binutils assembler,
`-muse-unaligned-vector-move`, which should also achieve the behaviour
we want (at least for our code). This was added in the 2.38 release,
see
https://sourceware.org/git/?p=binutils-gdb.git;a=commit;h=c8480b58e1968f209b6365af7422678f348222c2.
```bash
x86: Add -muse-unaligned-vector-move to assembler
Unaligned load/store instructions on aligned memory or register are as
fast as aligned load/store instructions on modern Intel processors. Add
a command-line option, -muse-unaligned-vector-move, to x86 assembler to
encode encode aligned vector load/store instructions as unaligned
vector load/store instructions.
```
Even if we introduce this option into our build system, we'll have to
maintain our GCC patching, as we want all code that ends up in the
binary, to avoid these instructions. However, there may be some value in
adding the option, as it could be an improvement for someone building
(bitcoind.exe) with an unpatched compiler.
2023-08-07 10:57:06 +02:00
dnl Avoid the use of aligned vector instructions when building for Windows.
dnl See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=54412.
AX_CHECK_COMPILE_FLAG([-Wa,-muse-unaligned-vector-move], [CORE_CXXFLAGS="$CORE_CXXFLAGS -Wa,-muse-unaligned-vector-move"], [], [$CXXFLAG_WERROR])
2013-05-28 01:55:01 +02:00
;;
*darwin*)
TARGET_OS=darwin
2021-11-24 13:16:53 +01:00
if test $cross_compiling != "yes"; then
2013-12-07 00:11:03 +01:00
BUILD_OS=darwin
2024-04-16 17:03:22 +02:00
AX_CHECK_LINK_FLAG([-Wl,-headerpad_max_install_names], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,-headerpad_max_install_names"], [], [$LDFLAG_WERROR])
2021-11-10 04:48:55 +01:00
AC_CHECK_PROG([BREW], [brew], [brew])
2021-11-24 13:16:53 +01:00
if test "$BREW" = "brew"; then
2014-10-06 22:36:24 +02:00
dnl These Homebrew packages may be keg-only, meaning that they won't be found
2014-09-29 21:26:31 +02:00
dnl in expected paths because they may conflict with system files. Ask
dnl Homebrew where each one is located, then adjust paths accordingly.
dnl It's safe to add these paths even if the functionality is disabled by
dnl the user (--without-wallet or --without-gui for example).
2022-09-12 19:33:01 +02:00
dnl Homebrew may create symlinks in /usr/local/include for some packages.
dnl Because MacOS's clang internally adds "-I /usr/local/include" to its search
dnl paths, this will negate efforts to use -isystem for those packages, as they
dnl will be found first in /usr/local. Use the internal "-internal-isystem"
dnl option to system-ify all /usr/local/include paths without adding it to the list
dnl of search paths in case it's not already there.
if test "$suppress_external_warnings" != "no"; then
2024-01-07 12:32:51 +01:00
AX_CHECK_PREPROC_FLAG([-Xclang -internal-isystem -Xclang /usr/local/include/], [CORE_CPPFLAGS="$CORE_CPPFLAGS -Xclang -internal-isystem -Xclang /usr/local/include/"], [], [$CXXFLAG_WERROR])
2022-09-12 19:33:01 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_bdb" != "no" && $BREW list --versions berkeley-db@4 >/dev/null && test "$BDB_CFLAGS" = "" && test "$BDB_LIBS" = ""; then
2021-11-21 10:57:58 +01:00
bdb_prefix=$($BREW --prefix berkeley-db@4 2>/dev/null)
2020-06-23 12:47:24 +02:00
dnl This must precede the call to BITCOIN_FIND_BDB48 below.
BDB_CFLAGS="-I$bdb_prefix/include"
BDB_LIBS="-L$bdb_prefix/lib -ldb_cxx-4.8"
2014-09-29 21:26:31 +02:00
fi
2020-12-04 12:02:08 +01:00
2021-11-21 12:34:28 +01:00
if $BREW list --versions qt@5 >/dev/null; then
export PKG_CONFIG_PATH="$($BREW --prefix qt@5 2>/dev/null)/lib/pkgconfig:$PKG_CONFIG_PATH"
2014-09-29 21:26:31 +02:00
fi
2021-07-03 14:29:11 +02:00
case $host in
*aarch64*)
dnl The preferred Homebrew prefix for Apple Silicon is /opt/homebrew.
dnl Therefore, as we do not use pkg-config to detect miniupnpc and libnatpmp
dnl packages, we should set the CPPFLAGS and LDFLAGS variables for them
dnl explicitly.
2021-11-24 13:16:53 +01:00
if test "$use_upnp" != "no" && $BREW list --versions miniupnpc >/dev/null; then
2021-07-03 14:29:11 +02:00
miniupnpc_prefix=$($BREW --prefix miniupnpc 2>/dev/null)
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no"; then
2022-04-24 15:54:29 +02:00
MINIUPNPC_CPPFLAGS="-isystem $miniupnpc_prefix/include"
2021-07-03 14:29:11 +02:00
else
2022-04-24 15:54:29 +02:00
MINIUPNPC_CPPFLAGS="-I$miniupnpc_prefix/include"
2021-07-03 14:29:11 +02:00
fi
2022-04-24 15:54:29 +02:00
MINIUPNPC_LIBS="-L$miniupnpc_prefix/lib"
2021-07-03 14:29:11 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_natpmp" != "no" && $BREW list --versions libnatpmp >/dev/null; then
2021-07-03 14:29:11 +02:00
libnatpmp_prefix=$($BREW --prefix libnatpmp 2>/dev/null)
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no"; then
2022-04-24 15:55:04 +02:00
NATPMP_CPPFLAGS="-isystem $libnatpmp_prefix/include"
2021-07-03 14:29:11 +02:00
else
2022-04-24 15:55:04 +02:00
NATPMP_CPPFLAGS="-I$libnatpmp_prefix/include"
2021-07-03 14:29:11 +02:00
fi
2022-04-24 15:55:04 +02:00
NATPMP_LIBS="-L$libnatpmp_prefix/lib"
2021-07-03 14:29:11 +02:00
fi
;;
esac
2013-05-28 01:55:01 +02:00
fi
2013-12-07 00:11:03 +01:00
else
case $build_os in
*darwin*)
BUILD_OS=darwin
;;
*)
2021-10-07 13:37:10 +02:00
AC_PATH_TOOL([DSYMUTIL], [dsymutil], [dsymutil])
2023-09-15 14:46:39 +02:00
AC_PATH_PROG([ZIP], [zip], [zip])
2014-11-22 03:21:54 +01:00
dnl libtool will try to strip the static lib, which is a problem for
dnl cross-builds because strip attempts to call a hard-coded ld,
dnl which may not exist in the path. Stripping the .a is not
dnl necessary, so just disable it.
old_striplib=
2013-12-07 00:11:03 +01:00
;;
esac
2013-05-28 01:55:01 +02:00
fi
2022-02-17 12:31:36 +01:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -DMAC_OSX -DOBJC_OLD_DISPATCH_PROTOTYPES=0"
2024-03-06 14:11:20 +01:00
dnl ignore deprecated-declarations warnings coming from objcxx code
dnl "'NSUserNotificationCenter' is deprecated: first deprecated in macOS 11.0".
OBJCXXFLAGS="$CXXFLAGS -Wno-deprecated-declarations"
2013-05-28 01:55:01 +02:00
;;
2018-07-13 22:17:20 +02:00
*android*)
dnl make sure android stays above linux for hosts like *linux-android*
2019-09-22 14:35:41 +02:00
TARGET_OS=android
2020-08-28 11:09:58 +02:00
case $host in
*x86_64*)
ANDROID_ARCH=x86_64
;;
*aarch64*)
ANDROID_ARCH=arm64-v8a
;;
*armv7a*)
ANDROID_ARCH=armeabi-v7a
;;
2021-12-04 23:27:55 +01:00
*) AC_MSG_ERROR([Could not determine Android arch, or it is unsupported]) ;;
2020-08-28 11:09:58 +02:00
esac
2018-07-13 22:17:20 +02:00
;;
2014-06-04 05:42:53 +02:00
*linux*)
2016-04-26 09:43:14 +02:00
TARGET_OS=linux
2013-05-28 01:55:01 +02:00
;;
esac
2021-11-24 13:16:53 +01:00
if test "$use_extended_functional_tests" != "no"; then
2017-03-09 15:55:12 +01:00
AC_SUBST(EXTENDED_FUNCTIONAL_TESTS, --extended)
2015-10-12 14:37:57 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_lcov" = "yes"; then
if test "$LCOV" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([lcov testing requested but lcov not found])
2013-05-28 01:55:01 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$PYTHON" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([lcov testing requested but python not found])
2015-10-11 22:05:20 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$GENHTML" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([lcov testing requested but genhtml not found])
2013-05-28 01:55:01 +02:00
fi
2020-08-08 14:36:45 +02:00
AC_MSG_CHECKING([whether compiler is Clang])
AC_PREPROC_IFELSE([AC_LANG_SOURCE([[
#if defined(__clang__) && defined(__llvm__)
// Compiler is Clang
#else
# error Compiler is not Clang
#endif
]])],[
AC_MSG_RESULT([yes])
2021-11-24 13:16:53 +01:00
if test "$LLVM_COV" = ""; then
2020-08-08 14:36:45 +02:00
AC_MSG_ERROR([lcov testing requested but llvm-cov not found])
fi
COV_TOOL="$LLVM_COV gcov"
],[
AC_MSG_RESULT([no])
2021-11-24 13:16:53 +01:00
if test "$GCOV" = "x"; then
2020-08-08 14:36:45 +02:00
AC_MSG_ERROR([lcov testing requested but gcov not found])
fi
COV_TOOL="$GCOV"
])
AC_SUBST(COV_TOOL)
AC_SUBST(COV_TOOL_WRAPPER, "cov_tool_wrapper.sh")
LCOV="$LCOV --gcov-tool $(pwd)/$COV_TOOL_WRAPPER"
2022-02-17 12:43:30 +01:00
AX_CHECK_LINK_FLAG([--coverage], [CORE_LDFLAGS="$CORE_LDFLAGS --coverage"],
2021-11-10 05:09:11 +01:00
[AC_MSG_ERROR([lcov testing requested but --coverage linker flag does not work])])
2022-02-17 17:16:52 +01:00
AX_CHECK_COMPILE_FLAG([--coverage],[CORE_CXXFLAGS="$CORE_CXXFLAGS --coverage"],
2021-11-10 05:09:11 +01:00
[AC_MSG_ERROR([lcov testing requested but --coverage flag does not work])])
2024-01-10 14:54:44 +01:00
CORE_CXXFLAGS="$CORE_CXXFLAGS -Og"
2017-06-02 23:13:08 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_lcov_branch" != "no"; then
2017-06-02 23:13:08 +02:00
AC_SUBST(LCOV_OPTS, "$LCOV_OPTS --rc lcov_branch_coverage=1")
2013-05-28 01:55:01 +02:00
fi
2014-12-19 09:53:43 +01:00
dnl Check for endianness
AC_C_BIGENDIAN
2013-05-28 01:55:01 +02:00
dnl Check for pthread compile/link requirements
AX_PTHREAD
2022-07-12 02:26:25 +02:00
dnl Check if -latomic is required for <std::atomic>
CHECK_ATOMIC
2019-12-10 14:35:33 +01:00
dnl The following macro will add the necessary defines to bitcoin-config.h, but
dnl they also need to be passed down to any subprojects. Pull the results out of
dnl the cache and add them to CPPFLAGS.
2013-05-28 01:55:01 +02:00
AC_SYS_LARGEFILE
2019-12-10 14:35:33 +01:00
dnl detect POSIX or GNU variant of strerror_r
2014-05-08 14:15:19 +02:00
AC_FUNC_STRERROR_R
2013-05-28 01:55:01 +02:00
2021-11-24 13:16:53 +01:00
if test "$ac_cv_sys_file_offset_bits" != "" &&
test "$ac_cv_sys_file_offset_bits" != "no" &&
test "$ac_cv_sys_file_offset_bits" != "unknown"; then
2022-02-17 12:31:36 +01:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
2013-05-28 01:55:01 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$ac_cv_sys_large_files" != "" &&
test "$ac_cv_sys_large_files" != "no" &&
test "$ac_cv_sys_large_files" != "unknown"; then
2022-02-17 12:31:36 +01:00
CORE_CPPFLAGS="$CORE_CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files"
2013-05-28 01:55:01 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$enable_gprof" = "yes"; then
2018-02-07 05:58:41 +01:00
dnl -pg is incompatible with -pie. Since hardening and profiling together doesn't make sense,
dnl we simply make them mutually exclusive here. Additionally, hardened toolchains may force
dnl -pie by default, in which case it needs to be turned off with -no-pie.
2021-11-24 13:16:53 +01:00
if test "$use_hardening" = "yes"; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([gprof profiling is not compatible with hardening. Reconfigure with --disable-hardening or --disable-gprof])
2018-02-07 05:58:41 +01:00
fi
use_hardening=no
AX_CHECK_COMPILE_FLAG([-pg],[GPROF_CXXFLAGS="-pg"],
2021-11-10 05:09:11 +01:00
[AC_MSG_ERROR([gprof profiling requested but not available])], [$CXXFLAG_WERROR])
2018-02-07 05:58:41 +01:00
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-no-pie], [GPROF_LDFLAGS="-no-pie"])
AX_CHECK_LINK_FLAG([-pg], [GPROF_LDFLAGS="$GPROF_LDFLAGS -pg"],
2021-11-10 05:09:11 +01:00
[AC_MSG_ERROR([gprof profiling requested but not available])], [$GPROF_LDFLAGS])
2018-02-07 05:58:41 +01:00
fi
2021-11-24 13:16:53 +01:00
if test "$TARGET_OS" != "windows"; then
2019-12-10 14:35:33 +01:00
dnl All windows code is PIC, forcing it on just adds useless compile warnings
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-fPIC], [PIC_FLAGS="-fPIC"])
2015-11-10 02:50:25 +01:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_hardening" != "no"; then
2018-02-07 05:58:41 +01:00
use_hardening=yes
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-Wstack-protector], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector"])
AX_CHECK_COMPILE_FLAG([-fstack-protector-all], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"])
2013-05-28 01:55:01 +02:00
2022-05-30 12:35:41 +02:00
AX_CHECK_COMPILE_FLAG([-fcf-protection=full], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fcf-protection=full"])
2020-06-18 07:31:28 +02:00
2021-03-12 03:21:21 +01:00
case $host in
*mingw*)
2023-07-16 16:18:53 +02:00
dnl stack-clash-protection doesn't compile with GCC 10 and earlier.
dnl In any case, it is a no-op for Windows.
2021-03-12 03:21:21 +01:00
dnl See https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90458 for more details.
;;
*)
2021-04-27 20:32:54 +02:00
AX_CHECK_COMPILE_FLAG([-fstack-clash-protection], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-clash-protection"], [], [$CXXFLAG_WERROR])
2021-03-12 03:21:21 +01:00
;;
esac
2021-11-18 07:12:47 +01:00
case $host in
*aarch64*)
AX_CHECK_COMPILE_FLAG([-mbranch-protection=bti], [HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -mbranch-protection=bti"])
;;
esac
2020-06-18 07:31:28 +02:00
2019-12-10 14:35:33 +01:00
dnl When enable_debug is yes, all optimizations are disabled.
dnl However, FORTIFY_SOURCE requires that there is some level of optimization, otherwise it does nothing and just creates a compiler warning.
dnl Since FORTIFY_SOURCE is a no-op without optimizations, do not enable it when enable_debug is yes.
2021-11-24 13:16:53 +01:00
if test "$enable_debug" != "yes"; then
2023-02-01 13:10:08 +01:00
AX_CHECK_PREPROC_FLAG([-D_FORTIFY_SOURCE=3],[
2019-10-03 01:52:31 +02:00
AX_CHECK_PREPROC_FLAG([-U_FORTIFY_SOURCE],[
HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE"
])
2023-02-01 13:10:08 +01:00
HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=3"
2013-11-12 22:01:36 +01:00
])
2019-10-03 01:52:31 +02:00
fi
2013-05-28 01:55:01 +02:00
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-Wl,--enable-reloc-section], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--enable-reloc-section"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,--dynamicbase], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,--nxcompat], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,--high-entropy-va], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--high-entropy-va"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,-z,relro], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,relro"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,-z,now], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,now"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,-z,separate-code], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,separate-code"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-fPIE -pie], [PIE_FLAGS="-fPIE"; HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"], [], [$CXXFLAG_WERROR])
2013-05-28 01:55:01 +02:00
fi
2020-04-27 04:54:13 +02:00
dnl These flags are specific to ld64, and may cause issues with other linkers.
2020-05-27 16:15:05 +02:00
dnl For example: GNU ld will interpret -dead_strip as -de and then try and use
2020-04-27 04:54:13 +02:00
dnl "ad_strip" as the symbol for the entry point.
2021-11-24 13:16:53 +01:00
if test "$TARGET_OS" = "darwin"; then
2022-02-17 12:43:30 +01:00
AX_CHECK_LINK_FLAG([-Wl,-dead_strip], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,-dead_strip"], [], [$LDFLAG_WERROR])
AX_CHECK_LINK_FLAG([-Wl,-dead_strip_dylibs], [CORE_LDFLAGS="$CORE_LDFLAGS -Wl,-dead_strip_dylibs"], [], [$LDFLAG_WERROR])
2023-05-11 00:50:50 +02:00
AX_CHECK_LINK_FLAG([-Wl,-fixup_chains], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-fixup_chains"], [], [$LDFLAG_WERROR])
2013-05-28 01:55:01 +02:00
fi
2024-02-27 19:39:22 +01:00
AC_CHECK_HEADERS([sys/select.h sys/prctl.h sys/sysctl.h vm/vm_param.h sys/vmmeter.h sys/resources.h])
2014-06-09 21:05:28 +02:00
2021-03-21 01:41:26 +01:00
AC_CHECK_DECLS([getifaddrs, freeifaddrs],[CHECK_SOCKET],,
2018-07-19 20:21:05 +02:00
[#include <sys/types.h>
#include <ifaddrs.h>]
)
2014-11-21 10:38:27 +01:00
2021-01-25 22:45:54 +01:00
dnl These are used for daemonization in bitcoind
AC_CHECK_DECLS([fork])
AC_CHECK_DECLS([setsid])
2016-06-28 08:35:41 +02:00
2021-02-22 00:25:17 +01:00
AC_CHECK_DECLS([pipe2])
2017-03-20 10:09:01 +01:00
dnl Check for malloc_info (for memory statistics information in getmemoryinfo)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for getmemoryinfo])
2017-03-20 10:09:01 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
[[ int f = malloc_info(0, NULL); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_MALLOC_INFO], [1], [Define this symbol if you have malloc_info]) ],
[ AC_MSG_RESULT([no])]
2017-03-20 10:09:01 +01:00
)
2017-03-05 10:29:37 +01:00
2017-03-30 09:37:47 +02:00
dnl Check for mallopt(M_ARENA_MAX) (to set glibc arenas)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for mallopt M_ARENA_MAX])
2017-03-30 09:37:47 +02:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <malloc.h>]],
[[ mallopt(M_ARENA_MAX, 1); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_MALLOPT_ARENA_MAX], [1], [Define this symbol if you have mallopt with M_ARENA_MAX]) ],
[ AC_MSG_RESULT([no])]
2017-03-30 09:37:47 +02:00
)
2020-03-26 10:59:46 +01:00
dnl Check for posix_fallocate
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for posix_fallocate])
2020-03-26 10:59:46 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2023-05-14 17:29:23 +02:00
// same as in src/util/fs_helpers.cpp
2020-03-26 10:59:46 +01:00
#ifdef __linux__
#ifdef _POSIX_C_SOURCE
#undef _POSIX_C_SOURCE
#endif
#define _POSIX_C_SOURCE 200112L
#endif // __linux__
#include <fcntl.h>]],
[[ int f = posix_fallocate(0, 0, 0); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_POSIX_FALLOCATE], [1], [Define this symbol if you have posix_fallocate]) ],
[ AC_MSG_RESULT([no])]
2020-03-26 10:59:46 +01:00
)
2020-07-14 13:06:37 +02:00
AC_MSG_CHECKING([for default visibility attribute])
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
int foo(void) __attribute__((visibility("default")));
2014-08-18 21:55:54 +02:00
int main(){}
])],
[
2021-11-09 07:03:42 +01:00
AC_DEFINE([HAVE_DEFAULT_VISIBILITY_ATTRIBUTE], [1], [Define if the visibility attribute is supported.])
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([yes])
2014-08-18 21:55:54 +02:00
],
[
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([no])
2021-11-24 13:16:53 +01:00
if test "$use_reduce_exports" = "yes"; then
2015-02-24 02:18:54 +01:00
AC_MSG_ERROR([Cannot find a working visibility attribute. Use --disable-reduce-exports.])
2014-08-18 21:55:54 +02:00
fi
]
)
2020-07-14 14:37:21 +02:00
AC_MSG_CHECKING([for dllexport attribute])
AC_COMPILE_IFELSE([AC_LANG_SOURCE([
__declspec(dllexport) int foo(void);
int main(){}
])],
[
2021-11-09 07:03:42 +01:00
AC_DEFINE([HAVE_DLLEXPORT_ATTRIBUTE], [1], [Define if the dllexport attribute is supported.])
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([yes])
2020-07-14 14:37:21 +02:00
],
2021-11-10 05:09:11 +01:00
[AC_MSG_RESULT([no])]
2020-07-14 14:37:21 +02:00
)
2019-12-10 14:35:33 +01:00
dnl Check for different ways of gathering OS randomness
2023-05-18 12:25:44 +02:00
AC_MSG_CHECKING([for Linux getrandom function])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/random.h>]],
[[ getrandom(nullptr, 32, 0); ]])],
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_GETRANDOM], [1], [Define this symbol if the Linux getrandom function call is available]) ],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([no])]
2017-02-21 17:36:37 +01:00
)
2023-05-19 11:14:35 +02:00
AC_MSG_CHECKING([for getentropy via sys/random.h])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
2017-07-27 14:34:09 +02:00
#include <sys/random.h>]],
[[ getentropy(nullptr, 32) ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_GETENTROPY_RAND], [1], [Define this symbol if the BSD getentropy system call is available with sys/random.h]) ],
[ AC_MSG_RESULT([no])]
2017-07-27 14:34:09 +02:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for sysctl])
2019-10-28 18:42:25 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
#include <sys/sysctl.h>]],
2020-03-16 10:20:27 +01:00
[[ #ifdef __linux__
2019-10-28 18:42:25 +01:00
#error "Don't use sysctl on Linux, it's deprecated even when it works"
#endif
2020-03-16 10:20:27 +01:00
sysctl(nullptr, 2, nullptr, nullptr, nullptr, 0); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_SYSCTL], [1], [Define this symbol if the BSD sysctl() is available]) ],
[ AC_MSG_RESULT([no])]
2019-10-28 18:42:25 +01:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for sysctl KERN_ARND])
2017-02-21 17:36:37 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/types.h>
#include <sys/sysctl.h>]],
2020-03-16 10:20:27 +01:00
[[ #ifdef __linux__
#error "Don't use sysctl on Linux, it's deprecated even when it works"
#endif
static int name[2] = {CTL_KERN, KERN_ARND};
2017-02-21 17:36:37 +01:00
sysctl(name, 2, nullptr, nullptr, nullptr, 0); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_SYSCTL_ARND], [1], [Define this symbol if the BSD sysctl(KERN_ARND) is available]) ],
[ AC_MSG_RESULT([no])]
2017-02-21 17:36:37 +01:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for fdatasync])
2019-11-06 22:26:28 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <unistd.h>]],
[[ fdatasync(0); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); HAVE_FDATASYNC=1 ],
[ AC_MSG_RESULT([no]); HAVE_FDATASYNC=0 ]
2019-11-06 22:26:28 +01:00
)
2020-08-20 19:41:54 +02:00
AC_DEFINE_UNQUOTED([HAVE_FDATASYNC], [$HAVE_FDATASYNC], [Define to 1 if fdatasync is available.])
2019-11-06 22:26:28 +01:00
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for F_FULLFSYNC])
2019-11-06 22:26:28 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <fcntl.h>]],
[[ fcntl(0, F_FULLFSYNC, 0); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); HAVE_FULLFSYNC=1 ],
[ AC_MSG_RESULT([no]); HAVE_FULLFSYNC=0 ]
2019-11-06 22:26:28 +01:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for O_CLOEXEC])
2019-11-06 22:26:28 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <fcntl.h>]],
[[ open("", O_CLOEXEC); ]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); HAVE_O_CLOEXEC=1 ],
[ AC_MSG_RESULT([no]); HAVE_O_CLOEXEC=0 ]
2019-11-06 22:26:28 +01:00
)
2021-02-21 02:56:13 +01:00
AC_DEFINE_UNQUOTED([HAVE_O_CLOEXEC], [$HAVE_O_CLOEXEC], [Define to 1 if O_CLOEXEC flag is available.])
2019-11-06 22:26:28 +01:00
2019-11-07 15:52:44 +01:00
dnl crc32c platform checks
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for __builtin_prefetch])
2019-11-07 15:52:44 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ ]], [[
char data = 0;
const char* address = &data;
__builtin_prefetch(address, 0, 0);
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); HAVE_BUILTIN_PREFETCH=1 ],
[ AC_MSG_RESULT([no]); HAVE_BUILTIN_PREFETCH=0 ]
2019-11-07 15:52:44 +01:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for _mm_prefetch])
2019-11-07 15:52:44 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <xmmintrin.h>]], [[
char data = 0;
const char* address = &data;
_mm_prefetch(address, _MM_HINT_NTA);
]])],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); HAVE_MM_PREFETCH=1 ],
[ AC_MSG_RESULT([no]); HAVE_MM_PREFETCH=0 ]
2019-11-07 15:52:44 +01:00
)
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([for strong getauxval support in the system headers])
2019-11-07 15:52:44 +01:00
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/auxv.h>
]], [[
getauxval(AT_HWCAP);
]])],
2023-04-13 19:31:08 +02:00
[ AC_MSG_RESULT([yes]); HAVE_STRONG_GETAUXVAL=1; AC_DEFINE([HAVE_STRONG_GETAUXVAL], [1], [Define this symbol to build code that uses getauxval]) ],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([no]); HAVE_STRONG_GETAUXVAL=0 ]
2019-11-07 15:52:44 +01:00
)
2023-04-13 19:31:08 +02:00
# Check for UNIX sockets
AC_MSG_CHECKING(for sockaddr_un)
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <sys/socket.h>
#include <sys/un.h>
]], [[
struct sockaddr_un addr;
addr.sun_family = AF_UNIX;
]])],
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_SOCKADDR_UN], [1], [Define this symbol if platform supports unix domain sockets]) ],
[ AC_MSG_RESULT([no]); ]
)
2021-08-31 14:36:01 +02:00
have_any_system=no
2019-02-21 14:00:33 +01:00
AC_MSG_CHECKING([for std::system])
AC_LINK_IFELSE(
[ AC_LANG_PROGRAM(
[[ #include <cstdlib> ]],
[[ int nErr = std::system(""); ]]
)],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); have_any_system=yes],
[ AC_MSG_RESULT([no]) ]
2019-02-21 14:00:33 +01:00
)
AC_MSG_CHECKING([for ::_wsystem])
AC_LINK_IFELSE(
[ AC_LANG_PROGRAM(
2022-06-20 14:04:37 +02:00
[[ #include <stdlib.h> ]],
[[ int nErr = ::_wsystem(NULL); ]]
2019-02-21 14:00:33 +01:00
)],
2021-11-10 05:09:11 +01:00
[ AC_MSG_RESULT([yes]); have_any_system=yes],
[ AC_MSG_RESULT([no]) ]
2019-02-21 14:00:33 +01:00
)
2021-11-24 13:16:53 +01:00
if test "$have_any_system" != "no"; then
2021-11-09 07:03:42 +01:00
AC_DEFINE([HAVE_SYSTEM], [1], [Define to 1 if std::system or ::wsystem is available.])
2021-08-31 14:36:01 +02:00
fi
2019-02-21 14:00:33 +01:00
2020-04-23 21:09:46 +02:00
dnl SUPPRESSED_CPPFLAGS=SUPPRESS_WARNINGS([$SOME_CPPFLAGS])
dnl Replace -I with -isystem in $SOME_CPPFLAGS to suppress warnings from
dnl headers from its include directories and return the result.
dnl See -isystem documentation:
dnl https://gcc.gnu.org/onlinedocs/gcc/Directory-Options.html
dnl https://clang.llvm.org/docs/ClangCommandLineReference.html#cmdoption-clang-isystem-directory
dnl Do not change "-I/usr/include" to "-isystem /usr/include" because that
dnl is not necessary (/usr/include is already a system directory) and because
dnl it would break GCC's #include_next.
AC_DEFUN([SUPPRESS_WARNINGS],
2022-03-22 15:13:13 +01:00
[[$(echo $1 |${SED} -E -e 's/(^| )-I/\1-isystem /g' -e 's;-isystem /usr/include/*( |$);-I/usr/include\1;g')]])
2020-04-23 21:09:46 +02:00
2019-07-04 21:43:32 +02:00
dnl enable-fuzz should disable all other targets
2021-11-24 13:16:53 +01:00
if test "$enable_fuzz" = "yes"; then
2021-11-10 05:09:11 +01:00
AC_MSG_WARN([enable-fuzz will disable all other targets and force --enable-fuzz-binary=yes])
2019-07-04 21:43:32 +02:00
build_bitcoin_utils=no
build_bitcoin_cli=no
build_bitcoin_tx=no
2020-09-10 00:09:07 +02:00
build_bitcoin_util=no
2021-09-01 21:46:51 +02:00
build_bitcoin_chainstate=no
2019-07-04 21:43:32 +02:00
build_bitcoin_wallet=no
build_bitcoind=no
bitcoin_enable_qt=no
bitcoin_enable_qt_test=no
bitcoin_enable_qt_dbus=no
use_bench=no
2022-02-08 18:30:24 +01:00
use_tests=no
2019-10-30 20:08:23 +01:00
use_external_signer=no
2019-07-04 21:43:32 +02:00
use_upnp=no
2020-02-23 00:34:13 +01:00
use_natpmp=no
2019-07-04 21:43:32 +02:00
use_zmq=no
2021-01-24 17:09:24 +01:00
enable_fuzz_binary=yes
2020-10-03 10:54:28 +02:00
2021-09-02 15:08:41 +02:00
AX_CHECK_PREPROC_FLAG([-DABORT_ON_FAILED_ASSUME], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -DABORT_ON_FAILED_ASSUME"], [], [$CXXFLAG_WERROR])
2019-07-04 21:43:32 +02:00
else
BITCOIN_QT_INIT
dnl sets $bitcoin_enable_qt, $bitcoin_enable_qt_test, $bitcoin_enable_qt_dbus
2022-02-05 22:53:46 +01:00
BITCOIN_QT_CONFIGURE([5.11.3])
2020-04-23 21:09:46 +02:00
dnl Keep a copy of the original $QT_INCLUDES and use it when invoking qt's moc
QT_INCLUDES_UNSUPPRESSED=$QT_INCLUDES
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no" ; then
2020-04-23 21:09:46 +02:00
QT_INCLUDES=SUPPRESS_WARNINGS($QT_INCLUDES)
QT_DBUS_INCLUDES=SUPPRESS_WARNINGS($QT_DBUS_INCLUDES)
QT_TEST_INCLUDES=SUPPRESS_WARNINGS($QT_TEST_INCLUDES)
fi
2022-02-14 12:55:57 +01:00
fi
if test "$enable_fuzz_binary" = "yes"; then
AC_MSG_CHECKING([whether main function is needed for fuzz binary])
AX_CHECK_LINK_FLAG(
[],
[AC_MSG_RESULT([no])],
[AC_MSG_RESULT([yes]); CORE_CPPFLAGS="$CORE_CPPFLAGS -DPROVIDE_FUZZ_MAIN_FUNCTION"],
[$SANITIZER_LDFLAGS],
[AC_LANG_PROGRAM([[
#include <cstdint>
#include <cstddef>
extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { return 0; }
/* comment to remove the main function ...
]],[[
*/ int not_main() {
]])])
2019-07-04 21:43:32 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$enable_wallet" != "no"; then
2013-11-29 16:50:11 +01:00
dnl Check for libdb_cxx only if wallet enabled
2021-11-24 13:16:53 +01:00
if test "$use_bdb" != "no"; then
2021-04-07 09:22:49 +02:00
BITCOIN_FIND_BDB48
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no" ; then
2020-04-23 21:09:46 +02:00
BDB_CPPFLAGS=SUPPRESS_WARNINGS($BDB_CPPFLAGS)
2021-04-07 09:22:49 +02:00
fi
2020-04-23 21:09:46 +02:00
fi
2020-05-27 02:52:59 +02:00
dnl Check for sqlite3
2021-11-24 13:16:53 +01:00
if test "$use_sqlite" != "no"; then
2020-10-15 15:50:00 +02:00
PKG_CHECK_MODULES([SQLITE], [sqlite3 >= 3.7.17], [have_sqlite=yes], [have_sqlite=no])
fi
AC_MSG_CHECKING([whether to build wallet with support for sqlite])
2021-11-24 13:16:53 +01:00
if test "$use_sqlite" = "no"; then
2020-10-15 15:50:00 +02:00
use_sqlite=no
2021-11-24 13:16:53 +01:00
elif test "$have_sqlite" = "no"; then
if test "$use_sqlite" = "yes"; then
2020-10-15 15:50:00 +02:00
AC_MSG_ERROR([sqlite support requested but cannot be built. Use --without-sqlite])
fi
use_sqlite=no
else
2021-11-24 13:16:53 +01:00
if test "$use_sqlite" != "no"; then
2020-10-15 15:50:00 +02:00
AC_DEFINE([USE_SQLITE],[1],[Define if sqlite support should be compiled in])
use_sqlite=yes
fi
fi
AC_MSG_RESULT([$use_sqlite])
2020-10-19 20:17:58 +02:00
dnl Disable wallet if both --without-bdb and --without-sqlite
2021-11-24 13:16:53 +01:00
if test "$use_bdb$use_sqlite" = "nono"; then
if test "$enable_wallet" = "yes"; then
2020-10-19 20:17:58 +02:00
AC_MSG_ERROR([wallet functionality requested but no BDB or SQLite support available.])
fi
enable_wallet=no
fi
2013-11-29 16:50:11 +01:00
fi
2013-05-28 01:55:01 +02:00
2021-12-07 19:19:59 +01:00
if test "$use_usdt" != "no"; then
AC_MSG_CHECKING([whether Userspace, Statically Defined Tracing tracepoints are supported])
2021-06-14 07:35:05 +02:00
AC_COMPILE_IFELSE([
AC_LANG_PROGRAM(
[#include <sys/sdt.h>],
2023-05-18 15:59:14 +02:00
[DTRACE_PROBE(context, event);
int a, b, c, d, e, f, g;
DTRACE_PROBE7(context, event, a, b, c, d, e, f, g);]
2021-06-14 07:35:05 +02:00
)],
2021-12-07 19:19:59 +01:00
[AC_MSG_RESULT([yes]); AC_DEFINE([ENABLE_TRACING], [1], [Define to 1 to enable tracepoints for Userspace, Statically Defined Tracing])],
[AC_MSG_RESULT([no]); use_usdt=no;]
2021-06-14 07:35:05 +02:00
)
2020-09-05 16:36:47 +02:00
fi
2022-02-03 11:25:30 +01:00
AM_CONDITIONAL([ENABLE_USDT_TRACEPOINTS], [test "$use_usdt" = "yes"])
2020-09-05 16:36:47 +02:00
2022-01-12 23:02:21 +01:00
if test "$build_bitcoind$bitcoin_enable_qt$use_bench$use_tests" = "nononono"; then
2021-10-24 15:54:54 +02:00
use_upnp=no
use_natpmp=no
use_zmq=no
fi
2013-05-28 01:55:01 +02:00
dnl Check for libminiupnpc (optional)
2021-11-24 13:16:53 +01:00
if test "$use_upnp" != "no"; then
2022-04-24 15:54:29 +02:00
TEMP_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $MINIUPNPC_CPPFLAGS"
2023-10-30 15:56:07 +01:00
AC_CHECK_HEADERS([miniupnpc/miniupnpc.h miniupnpc/upnpcommands.h miniupnpc/upnperrors.h], [], [have_miniupnpc=no])
2021-07-29 09:57:45 +02:00
2022-04-24 15:25:14 +02:00
if test "$have_miniupnpc" != "no"; then
2023-10-30 15:56:07 +01:00
AC_CHECK_LIB([miniupnpc], [upnpDiscover], [MINIUPNPC_LIBS="$MINIUPNPC_LIBS -lminiupnpc"], [have_miniupnpc=no], [$MINIUPNPC_LIBS])
dnl The minimum supported miniUPnPc API version is set to 17. This excludes
dnl versions with known vulnerabilities.
2022-04-24 15:25:14 +02:00
AC_MSG_CHECKING([whether miniUPnPc API version is supported])
AC_PREPROC_IFELSE([AC_LANG_PROGRAM([[
@%:@include <miniupnpc/miniupnpc.h>
]], [[
2021-07-29 09:57:45 +02:00
#if MINIUPNPC_API_VERSION >= 17
2022-04-24 15:25:14 +02:00
// Everything is okay
#else
# error miniUPnPc API version is too old
#endif
]])],[
AC_MSG_RESULT([yes])
],[
AC_MSG_RESULT([no])
2021-07-29 09:57:45 +02:00
AC_MSG_WARN([miniUPnPc API version < 17 is unsupported, disabling UPnP support.])
2022-04-24 15:25:14 +02:00
have_miniupnpc=no
])
fi
2022-04-24 15:54:29 +02:00
CPPFLAGS="$TEMP_CPPFLAGS"
2013-05-28 01:55:01 +02:00
fi
2020-02-23 00:34:13 +01:00
dnl Check for libnatpmp (optional).
2021-11-24 13:16:53 +01:00
if test "$use_natpmp" != "no"; then
2022-04-24 15:55:04 +02:00
TEMP_CPPFLAGS="$CPPFLAGS"
CPPFLAGS="$CPPFLAGS $NATPMP_CPPFLAGS"
2023-10-31 11:49:40 +01:00
AC_CHECK_HEADERS([natpmp.h], [], [have_natpmp=no])
if test "$have_natpmp" != "no"; then
AC_CHECK_LIB([natpmp], [initnatpmp], [NATPMP_LIBS="$NATPMP_LIBS -lnatpmp"], [have_natpmp=no], [$NATPMP_LIBS])
fi
2022-04-24 15:55:04 +02:00
CPPFLAGS="$TEMP_CPPFLAGS"
2020-02-23 00:34:13 +01:00
fi
2023-02-07 18:07:16 +01:00
if test "$build_bitcoin_wallet$build_bitcoin_cli$build_bitcoin_tx$build_bitcoin_util$build_bitcoind$bitcoin_enable_qt$use_tests$use_bench$enable_fuzz_binary" = "nonononononononono"; then
2021-03-02 17:55:07 +01:00
use_boost=no
2015-01-06 14:12:39 +01:00
else
2021-03-02 17:55:07 +01:00
use_boost=yes
2015-01-06 14:12:39 +01:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_boost" = "yes"; then
2015-01-06 14:12:39 +01:00
2021-03-02 17:55:07 +01:00
dnl Check for Boost headers
2023-12-12 20:38:55 +01:00
AX_BOOST_BASE([1.73.0],[],[AC_MSG_ERROR([Boost is not available!])])
2021-11-24 13:16:53 +01:00
if test "$want_boost" = "no"; then
2024-03-11 13:12:12 +01:00
AC_MSG_ERROR([Boost is required])
2021-03-02 17:55:07 +01:00
fi
2022-03-14 10:52:41 +01:00
dnl we don't use multi_index serialization
BOOST_CPPFLAGS="$BOOST_CPPFLAGS -DBOOST_MULTI_INDEX_DISABLE_SERIALIZATION"
2022-06-21 11:44:40 +02:00
dnl Prevent use of std::unary_function, which was removed in C++17,
2023-01-28 18:07:52 +01:00
dnl and will generate warnings with newer compilers for Boost
dnl older than 1.80.
dnl See: https://github.com/boostorg/config/pull/430.
AX_CHECK_PREPROC_FLAG([-DBOOST_NO_CXX98_FUNCTION_BASE], [BOOST_CPPFLAGS="$BOOST_CPPFLAGS -DBOOST_NO_CXX98_FUNCTION_BASE"], [], [$CXXFLAG_WERROR],
[AC_LANG_PROGRAM([[#include <boost/config.hpp>]])])
2022-06-21 11:44:40 +02:00
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no"; then
2020-04-23 21:09:46 +02:00
BOOST_CPPFLAGS=SUPPRESS_WARNINGS($BOOST_CPPFLAGS)
2021-03-02 17:55:07 +01:00
fi
2015-01-06 14:12:39 +01:00
fi
2023-03-12 19:03:40 +01:00
case $host in
dnl Re-enable it after enabling Windows support in cpp-subprocess.
*mingw*)
use_external_signer="no"
;;
esac
if test "$use_external_signer" = "yes"; then
AC_DEFINE([ENABLE_EXTERNAL_SIGNER], [1], [Define if external signer support is enabled])
2021-06-23 08:43:00 +02:00
fi
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([ENABLE_EXTERNAL_SIGNER], [test "$use_external_signer" = "yes"])
2021-03-02 17:59:05 +01:00
2020-07-14 15:06:43 +02:00
dnl Check for reduced exports
2021-11-24 13:16:53 +01:00
if test "$use_reduce_exports" = "yes"; then
2022-02-17 17:16:52 +01:00
AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [CORE_CXXFLAGS="$CORE_CXXFLAGS -fvisibility=hidden"],
2021-09-02 15:04:47 +02:00
[AC_MSG_ERROR([Cannot set hidden symbol visibility. Use --disable-reduce-exports.])], [$CXXFLAG_WERROR])
2021-09-02 14:42:14 +02:00
AX_CHECK_LINK_FLAG([-Wl,--exclude-libs,ALL], [RELDFLAGS="-Wl,--exclude-libs,ALL"], [], [$LDFLAG_WERROR])
2014-08-18 21:55:54 +02:00
fi
2021-11-24 13:16:53 +01:00
if test "$use_tests" = "yes"; then
2013-09-10 21:18:09 +02:00
2021-11-24 13:16:53 +01:00
if test "$HEXDUMP" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([hexdump is required for tests])
2013-09-10 21:18:09 +02:00
fi
2013-05-28 01:55:01 +02:00
fi
2020-03-09 20:17:40 +01:00
dnl libevent check
2013-05-28 01:55:01 +02:00
2022-06-05 23:47:46 +02:00
use_libevent=no
2022-02-08 18:30:24 +01:00
if test "$build_bitcoin_cli$build_bitcoind$bitcoin_enable_qt$enable_fuzz_binary$use_tests$use_bench" != "nononononono"; then
2022-03-23 15:01:46 +01:00
PKG_CHECK_MODULES([EVENT], [libevent >= 2.1.8], [use_libevent=yes], [AC_MSG_ERROR([libevent version 2.1.8 or greater not found.])])
2021-11-24 13:16:53 +01:00
if test "$TARGET_OS" != "windows"; then
2022-03-23 15:01:46 +01:00
PKG_CHECK_MODULES([EVENT_PTHREADS], [libevent_pthreads >= 2.1.8], [], [AC_MSG_ERROR([libevent_pthreads version 2.1.8 or greater not found.])])
2015-01-20 06:04:59 +01:00
fi
2021-04-06 08:43:33 +02:00
2021-11-24 13:16:53 +01:00
if test "$suppress_external_warnings" != "no"; then
2021-04-06 08:43:33 +02:00
EVENT_CFLAGS=SUPPRESS_WARNINGS($EVENT_CFLAGS)
fi
2020-03-09 20:04:50 +01:00
fi
2015-01-20 06:04:59 +01:00
2021-12-07 17:02:04 +01:00
if test x$use_libevent = xyes; then
TEMP_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $EVENT_CFLAGS"
AC_MSG_CHECKING([if evhttp_connection_get_peer expects const char**])
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#include <cstdint>
#include <event2/http.h>
]], [[
evhttp_connection *conn = (evhttp_connection *)1;
const char *host;
uint16_t port;
evhttp_connection_get_peer(conn, &host, &port);
]])],
[ AC_MSG_RESULT([yes]); AC_DEFINE([HAVE_EVHTTP_CONNECTION_GET_PEER_CONST_CHAR], [1], [Define this symbol if evhttp_connection_get_peer expects const char**]) ],
[ AC_MSG_RESULT([no]) ]
)
CXXFLAGS="$TEMP_CXXFLAGS"
fi
2021-11-26 17:27:48 +01:00
2020-03-09 20:04:50 +01:00
dnl QR Code encoding library check
2015-10-03 21:21:55 +02:00
2021-11-24 13:16:53 +01:00
if test "$use_qr" != "no"; then
2020-03-09 20:04:50 +01:00
BITCOIN_QT_CHECK([PKG_CHECK_MODULES([QR], [libqrencode], [have_qrencode=yes], [have_qrencode=no])])
2013-12-13 21:19:02 +01:00
fi
2016-06-22 11:56:07 +02:00
2020-03-09 19:48:30 +01:00
dnl ZMQ check
2021-11-24 13:16:53 +01:00
if test "$use_zmq" = "yes"; then
2020-03-09 19:48:30 +01:00
PKG_CHECK_MODULES([ZMQ], [libzmq >= 4],
2023-05-18 11:48:48 +02:00
AC_DEFINE([ENABLE_ZMQ], [1], [Define this symbol to enable ZMQ functions]),
[AC_MSG_WARN([libzmq version 4.x or greater not found, disabling])
2020-03-09 19:48:30 +01:00
use_zmq=no])
fi
2021-11-24 13:16:53 +01:00
if test "$use_zmq" = "yes"; then
2020-03-09 16:33:08 +01:00
dnl Assume libzmq was built for static linking
case $host in
*mingw*)
ZMQ_CFLAGS="$ZMQ_CFLAGS -DZMQ_STATIC"
;;
esac
2013-12-13 21:19:02 +01:00
fi
2013-05-28 01:55:01 +02:00
2023-05-18 11:48:48 +02:00
AM_CONDITIONAL([ENABLE_ZMQ], [test "$use_zmq" = "yes"])
2019-07-10 19:46:31 +02:00
dnl libmultiprocess library check
libmultiprocess_found=no
2021-11-24 13:16:53 +01:00
if test "$with_libmultiprocess" = "yes" || test "$with_libmultiprocess" = "auto"; then
2021-10-20 20:41:05 +02:00
PKG_CHECK_MODULES([LIBMULTIPROCESS], [libmultiprocess], [
2020-06-23 08:00:54 +02:00
libmultiprocess_found=yes;
libmultiprocess_prefix=`$PKG_CONFIG --variable=prefix libmultiprocess`;
2021-10-20 20:41:05 +02:00
], [true])
2021-11-24 13:16:53 +01:00
elif test "$with_libmultiprocess" != "no"; then
2019-07-10 19:46:31 +02:00
AC_MSG_ERROR([--with-libmultiprocess=$with_libmultiprocess value is not yes, auto, or no])
fi
dnl Enable multiprocess check
2021-11-24 13:16:53 +01:00
if test "$enable_multiprocess" = "yes"; then
if test "$libmultiprocess_found" != "yes"; then
2019-07-10 19:46:31 +02:00
AC_MSG_ERROR([--enable-multiprocess=yes option specified but libmultiprocess library was not found. May need to install libmultiprocess library, or specify install path with PKG_CONFIG_PATH environment variable. Running 'pkg-config --debug libmultiprocess' may be helpful for debugging.])
fi
build_multiprocess=yes
2021-11-24 13:16:53 +01:00
elif test "$enable_multiprocess" = "auto"; then
2019-07-10 19:46:31 +02:00
build_multiprocess=$libmultiprocess_found
else
build_multiprocess=no
fi
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_MULTIPROCESS], [test "$build_multiprocess" = "yes"])
AM_CONDITIONAL([BUILD_BITCOIN_NODE], [test "$build_multiprocess" = "yes"])
AM_CONDITIONAL([BUILD_BITCOIN_GUI], [test "$build_multiprocess" = "yes"])
2019-07-10 19:46:31 +02:00
dnl codegen tools check
2021-11-24 13:16:53 +01:00
if test "$build_multiprocess" != "no"; then
if test "$with_mpgen" = "yes" || test "$with_mpgen" = "auto"; then
2019-07-10 19:46:31 +02:00
MPGEN_PREFIX="$libmultiprocess_prefix"
2021-11-24 13:16:53 +01:00
elif test "$with_mpgen" != "no"; then
2019-07-10 19:46:31 +02:00
MPGEN_PREFIX="$with_mpgen";
fi
AC_SUBST(MPGEN_PREFIX)
fi
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build bitcoind])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_BITCOIND], [test $build_bitcoind = "yes"])
2013-09-08 04:44:12 +02:00
AC_MSG_RESULT($build_bitcoind)
2014-12-25 12:43:52 +01:00
AC_MSG_CHECKING([whether to build bitcoin-cli])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_BITCOIN_CLI], [test $build_bitcoin_cli = "yes"])
2014-12-25 12:43:52 +01:00
AC_MSG_RESULT($build_bitcoin_cli)
AC_MSG_CHECKING([whether to build bitcoin-tx])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_BITCOIN_TX], [test $build_bitcoin_tx = "yes"])
2014-12-25 12:43:52 +01:00
AC_MSG_RESULT($build_bitcoin_tx)
2013-09-08 04:44:12 +02:00
2016-09-16 16:45:36 +02:00
AC_MSG_CHECKING([whether to build bitcoin-wallet])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_BITCOIN_WALLET], [test $build_bitcoin_wallet = "yes"])
2016-09-16 16:45:36 +02:00
AC_MSG_RESULT($build_bitcoin_wallet)
2020-09-10 00:09:07 +02:00
AC_MSG_CHECKING([whether to build bitcoin-util])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([BUILD_BITCOIN_UTIL], [test $build_bitcoin_util = "yes"])
2020-09-10 00:09:07 +02:00
AC_MSG_RESULT($build_bitcoin_util)
2021-09-01 21:46:51 +02:00
AC_MSG_CHECKING([whether to build experimental bitcoin-chainstate])
2022-09-04 18:58:10 +02:00
if test "$build_bitcoin_chainstate" = "yes"; then
if test "$build_experimental_kernel_lib" = "no"; then
AC_MSG_ERROR([experimental bitcoin-chainstate cannot be built without the experimental bitcoinkernel library. Use --with-experimental-kernel-lib]);
fi
build: Extract the libbitcoinkernel library
I strongly recommend reviewing with the following git-diff flags:
--patience --color-moved=dimmed-zebra
Extract out a libbitcoinkernel library linking in all files necessary
for using our consensus engine as-is. Link bitcoin-chainstate against
it.
See previous commit "build: Add example bitcoin-chainstate executable"
for more context.
We explicitly specify -fvisibility=default, which effectively overrides
the effects of --enable-reduced-exports since libbitcoinkernel requires
default symbol visibility
When compiling for mingw-w64, specify -static in both:
- ..._la_CXXFLAGS so that libtool will avoid building two versions of
each object (one PIC, one non-PIC). We just need the one that is
suitable for static linking.
- ..._la_LDFLAGS so that libtool will create a static library.
If we don't specify this, then libtool will prefer the non-static PIC
version of the object, which is built with -DDLL_EXPORT -DPIC for
mingw-w64 targets. This can cause symbol resolution problems when we
link this library against an executable that does specify -all-static,
since that will be built without the -DDLL_EXPORT flag.
Unfortunately, this means that for mingw-w64 we can only build a static
version of the library for now. This will be fixed.
However, on other targets, the shared library creation works fine.
-----
Note to users: You need to either specify:
--enable-experimental-util-chainstate
or,
--with-experimental-kernel-lib
To build the libbitcionkernel library. See the configure help for more
details.
build shared libbitcoinkernel where we can
2021-12-22 02:10:05 +01:00
fi
2022-09-04 18:58:10 +02:00
AM_CONDITIONAL([BUILD_BITCOIN_CHAINSTATE], [test $build_bitcoin_chainstate = "yes"])
2021-09-01 21:46:51 +02:00
AC_MSG_RESULT($build_bitcoin_chainstate)
build: Extract the libbitcoinkernel library
I strongly recommend reviewing with the following git-diff flags:
--patience --color-moved=dimmed-zebra
Extract out a libbitcoinkernel library linking in all files necessary
for using our consensus engine as-is. Link bitcoin-chainstate against
it.
See previous commit "build: Add example bitcoin-chainstate executable"
for more context.
We explicitly specify -fvisibility=default, which effectively overrides
the effects of --enable-reduced-exports since libbitcoinkernel requires
default symbol visibility
When compiling for mingw-w64, specify -static in both:
- ..._la_CXXFLAGS so that libtool will avoid building two versions of
each object (one PIC, one non-PIC). We just need the one that is
suitable for static linking.
- ..._la_LDFLAGS so that libtool will create a static library.
If we don't specify this, then libtool will prefer the non-static PIC
version of the object, which is built with -DDLL_EXPORT -DPIC for
mingw-w64 targets. This can cause symbol resolution problems when we
link this library against an executable that does specify -all-static,
since that will be built without the -DDLL_EXPORT flag.
Unfortunately, this means that for mingw-w64 we can only build a static
version of the library for now. This will be fixed.
However, on other targets, the shared library creation works fine.
-----
Note to users: You need to either specify:
--enable-experimental-util-chainstate
or,
--with-experimental-kernel-lib
To build the libbitcionkernel library. See the configure help for more
details.
build shared libbitcoinkernel where we can
2021-12-22 02:10:05 +01:00
AM_CONDITIONAL([BUILD_BITCOIN_KERNEL_LIB], [test "$build_experimental_kernel_lib" != "no" && ( test "$build_experimental_kernel_lib" = "yes" || test "$build_bitcoin_chainstate" = "yes" )])
2013-05-28 01:55:01 +02:00
AC_LANG_POP
2021-11-24 13:16:53 +01:00
if test "$use_ccache" != "no"; then
2021-10-08 02:13:36 +02:00
AC_MSG_CHECKING([if ccache should be used])
2021-11-24 13:16:53 +01:00
if test "$CCACHE" = ""; then
if test "$use_ccache" = "yes"; then
2013-05-28 01:55:01 +02:00
AC_MSG_ERROR([ccache not found.]);
else
use_ccache=no
fi
else
use_ccache=yes
CC="$ac_cv_path_CCACHE $CC"
CXX="$ac_cv_path_CCACHE $CXX"
fi
AC_MSG_RESULT($use_ccache)
2021-11-24 13:16:53 +01:00
if test "$use_ccache" = "yes"; then
2021-09-02 15:04:47 +02:00
AX_CHECK_COMPILE_FLAG([-fdebug-prefix-map=A=B], [DEBUG_CXXFLAGS="$DEBUG_CXXFLAGS -fdebug-prefix-map=\$(abs_top_srcdir)=."], [], [$CXXFLAG_WERROR])
2021-09-02 15:08:41 +02:00
AX_CHECK_PREPROC_FLAG([-fmacro-prefix-map=A=B], [DEBUG_CPPFLAGS="$DEBUG_CPPFLAGS -fmacro-prefix-map=\$(abs_top_srcdir)=."], [], [$CXXFLAG_WERROR])
2020-11-09 06:45:26 +01:00
fi
2013-05-28 01:55:01 +02:00
fi
2013-11-29 16:50:11 +01:00
dnl enable wallet
AC_MSG_CHECKING([if wallet should be enabled])
2021-11-24 13:16:53 +01:00
if test "$enable_wallet" != "no"; then
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([yes])
2013-11-29 16:50:11 +01:00
AC_DEFINE_UNQUOTED([ENABLE_WALLET],[1],[Define to 1 to enable wallet functions])
2020-10-19 20:17:58 +02:00
enable_wallet=yes
2013-11-29 16:50:11 +01:00
else
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([no])
2013-11-29 16:50:11 +01:00
fi
2013-05-28 01:55:01 +02:00
dnl enable upnp support
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build with support for UPnP])
2021-11-24 13:16:53 +01:00
if test "$have_miniupnpc" = "no"; then
if test "$use_upnp" = "yes"; then
2021-11-10 05:09:11 +01:00
AC_MSG_ERROR([UPnP requested but cannot be built. Use --without-miniupnpc])
2013-05-28 01:55:01 +02:00
fi
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([no])
2019-06-06 22:18:42 +02:00
use_upnp=no
2013-05-28 01:55:01 +02:00
else
2021-11-24 13:16:53 +01:00
if test "$use_upnp" != "no"; then
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([yes])
2013-05-28 01:55:01 +02:00
use_upnp=yes
2023-01-13 16:37:42 +01:00
AC_DEFINE([USE_UPNP], [1], [Define to 1 if UPnP support should be compiled in.])
2021-11-24 13:16:53 +01:00
if test "$TARGET_OS" = "windows"; then
2023-04-04 19:13:37 +02:00
MINIUPNPC_CPPFLAGS="$MINIUPNPC_CPPFLAGS -DMINIUPNP_STATICLIB"
2013-05-28 01:55:01 +02:00
fi
else
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([no])
2013-05-28 01:55:01 +02:00
fi
fi
2020-02-23 00:34:13 +01:00
dnl Enable NAT-PMP support.
AC_MSG_CHECKING([whether to build with support for NAT-PMP])
2021-11-24 13:16:53 +01:00
if test "$have_natpmp" = "no"; then
if test "$use_natpmp" = "yes"; then
2020-02-23 00:34:13 +01:00
AC_MSG_ERROR([NAT-PMP requested but cannot be built. Use --without-natpmp])
fi
AC_MSG_RESULT([no])
use_natpmp=no
else
2021-11-24 13:16:53 +01:00
if test "$use_natpmp" != "no"; then
2020-02-23 00:34:13 +01:00
AC_MSG_RESULT([yes])
use_natpmp=yes
2023-01-13 16:35:57 +01:00
AC_DEFINE([USE_NATPMP], [1], [Define to 1 if UPnP support should be compiled in.])
2021-11-24 13:16:53 +01:00
if test "$TARGET_OS" = "windows"; then
2022-04-24 15:55:04 +02:00
NATPMP_CPPFLAGS="$NATPMP_CPPFLAGS -DSTATICLIB -DNATPMP_STATICLIB"
2021-03-03 14:19:09 +01:00
fi
2020-02-23 00:34:13 +01:00
else
AC_MSG_RESULT([no])
fi
fi
2013-05-28 01:55:01 +02:00
dnl these are only used when qt is enabled
2016-03-31 14:50:10 +02:00
BUILD_TEST_QT=""
2021-11-24 13:16:53 +01:00
if test "$bitcoin_enable_qt" != "no"; then
2013-05-28 01:55:01 +02:00
dnl enable dbus support
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build GUI with support for D-Bus])
2021-11-24 13:16:53 +01:00
if test "$bitcoin_enable_qt_dbus" != "no"; then
2021-11-09 07:03:42 +01:00
AC_DEFINE([USE_DBUS], [1], [Define if dbus support should be compiled in])
2013-05-28 01:55:01 +02:00
fi
2021-11-10 05:09:11 +01:00
AC_MSG_RESULT([$bitcoin_enable_qt_dbus])
2013-05-28 01:55:01 +02:00
dnl enable qr support
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build GUI with support for QR codes])
2021-11-24 13:16:53 +01:00
if test "$have_qrencode" = "no"; then
if test "$use_qr" = "yes"; then
2019-11-21 12:39:36 +01:00
AC_MSG_ERROR([QR support requested but cannot be built. Use --without-qrencode])
2013-05-28 01:55:01 +02:00
fi
2019-11-21 12:39:36 +01:00
use_qr=no
2013-05-28 01:55:01 +02:00
else
2021-11-24 13:16:53 +01:00
if test "$use_qr" != "no"; then
2021-11-09 07:03:42 +01:00
AC_DEFINE([USE_QRCODE], [1], [Define if QR support should be compiled in])
2013-05-28 01:55:01 +02:00
use_qr=yes
fi
fi
2019-11-21 12:39:36 +01:00
AC_MSG_RESULT([$use_qr])
2013-05-28 01:55:01 +02:00
2021-11-24 13:16:53 +01:00
if test "$XGETTEXT" = ""; then
2021-11-10 05:09:11 +01:00
AC_MSG_WARN([xgettext is required to update qt translations])
2013-12-13 21:19:02 +01:00
fi
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build test_bitcoin-qt])
2021-11-24 13:16:53 +01:00
if test "$use_gui_tests$bitcoin_enable_qt_test" = "yesyes"; then
2013-09-08 05:18:47 +02:00
AC_MSG_RESULT([yes])
2016-03-31 14:50:10 +02:00
BUILD_TEST_QT="yes"
2013-09-08 05:18:47 +02:00
else
AC_MSG_RESULT([no])
2013-12-13 21:19:02 +01:00
fi
2013-05-28 01:55:01 +02:00
fi
2013-09-08 05:18:47 +02:00
AC_MSG_CHECKING([whether to build test_bitcoin])
2021-11-24 13:16:53 +01:00
if test "$use_tests" = "yes"; then
if test "$enable_fuzz" = "yes"; then
2020-12-10 00:35:05 +01:00
AC_MSG_RESULT([no, because fuzzing is enabled])
else
AC_MSG_RESULT([yes])
fi
2016-03-31 14:50:10 +02:00
BUILD_TEST="yes"
2013-09-08 05:18:47 +02:00
else
AC_MSG_RESULT([no])
2016-03-31 14:50:10 +02:00
BUILD_TEST=""
2013-05-28 01:55:01 +02:00
fi
2014-08-18 21:55:54 +02:00
AC_MSG_CHECKING([whether to reduce exports])
2021-11-24 13:16:53 +01:00
if test "$use_reduce_exports" = "yes"; then
2014-08-18 21:55:54 +02:00
AC_MSG_RESULT([yes])
else
AC_MSG_RESULT([no])
fi
2024-03-11 13:12:12 +01:00
if test "$build_bitcoin_wallet$build_bitcoin_cli$build_bitcoin_tx$build_bitcoin_util$build_bitcoind$bitcoin_enable_qt$enable_fuzz_binary$use_bench$use_tests" = "nonononononononono"; then
AC_MSG_ERROR([No targets! Please specify at least one of: --with-utils --with-daemon --with-gui --enable-fuzz(-binary) --enable-bench or --enable-tests])
2014-01-18 21:11:05 +01:00
fi
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([TARGET_DARWIN], [test "$TARGET_OS" = "darwin"])
AM_CONDITIONAL([BUILD_DARWIN], [test "$BUILD_OS" = "darwin"])
AM_CONDITIONAL([TARGET_LINUX], [test "$TARGET_OS" = "linux"])
AM_CONDITIONAL([TARGET_WINDOWS], [test "$TARGET_OS" = "windows"])
AM_CONDITIONAL([ENABLE_WALLET], [test "$enable_wallet" = "yes"])
AM_CONDITIONAL([USE_SQLITE], [test "$use_sqlite" = "yes"])
AM_CONDITIONAL([USE_BDB], [test "$use_bdb" = "yes"])
AM_CONDITIONAL([ENABLE_TESTS], [test "$BUILD_TEST" = "yes"])
AM_CONDITIONAL([ENABLE_FUZZ], [test "$enable_fuzz" = "yes"])
AM_CONDITIONAL([ENABLE_FUZZ_BINARY], [test "$enable_fuzz_binary" = "yes"])
AM_CONDITIONAL([ENABLE_QT], [test "$bitcoin_enable_qt" = "yes"])
AM_CONDITIONAL([ENABLE_QT_TESTS], [test "$BUILD_TEST_QT" = "yes"])
AM_CONDITIONAL([ENABLE_BENCH], [test "$use_bench" = "yes"])
AM_CONDITIONAL([USE_QRCODE], [test "$use_qr" = "yes"])
AM_CONDITIONAL([USE_LCOV], [test "$use_lcov" = "yes"])
AM_CONDITIONAL([HARDEN], [test "$use_hardening" = "yes"])
AM_CONDITIONAL([ENABLE_SSE42], [test "$enable_sse42" = "yes"])
AM_CONDITIONAL([ENABLE_SSE41], [test "$enable_sse41" = "yes"])
AM_CONDITIONAL([ENABLE_AVX2], [test "$enable_avx2" = "yes"])
2022-01-20 17:26:00 +01:00
AM_CONDITIONAL([ENABLE_X86_SHANI], [test "$enable_x86_shani" = "yes"])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([ENABLE_ARM_CRC], [test "$enable_arm_crc" = "yes"])
2022-01-20 18:57:27 +01:00
AM_CONDITIONAL([ENABLE_ARM_SHANI], [test "$enable_arm_shani" = "yes"])
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([WORDS_BIGENDIAN], [test "$ac_cv_c_bigendian" = "yes"])
AM_CONDITIONAL([USE_NATPMP], [test "$use_natpmp" = "yes"])
AM_CONDITIONAL([USE_UPNP], [test "$use_upnp" = "yes"])
2013-05-28 01:55:01 +02:00
2021-07-20 20:18:43 +02:00
dnl for minisketch
2021-11-24 13:16:53 +01:00
AM_CONDITIONAL([ENABLE_CLMUL], [test "$enable_clmul" = "yes"])
2021-07-20 20:18:43 +02:00
2021-11-09 07:03:42 +01:00
AC_DEFINE([CLIENT_VERSION_MAJOR], [_CLIENT_VERSION_MAJOR], [Major version])
AC_DEFINE([CLIENT_VERSION_MINOR], [_CLIENT_VERSION_MINOR], [Minor version])
AC_DEFINE([CLIENT_VERSION_BUILD], [_CLIENT_VERSION_BUILD], [Version Build])
AC_DEFINE([CLIENT_VERSION_IS_RELEASE], [_CLIENT_VERSION_IS_RELEASE], [Version is release])
AC_DEFINE([COPYRIGHT_YEAR], [_COPYRIGHT_YEAR], [Copyright year])
AC_DEFINE([COPYRIGHT_HOLDERS], ["_COPYRIGHT_HOLDERS"], [Copyright holder(s) before %s replacement])
AC_DEFINE([COPYRIGHT_HOLDERS_SUBSTITUTION], ["_COPYRIGHT_HOLDERS_SUBSTITUTION"], [Replacement for %s in copyright holders string])
2016-02-07 14:06:07 +01:00
define(_COPYRIGHT_HOLDERS_FINAL, [patsubst(_COPYRIGHT_HOLDERS, [%s], [_COPYRIGHT_HOLDERS_SUBSTITUTION])])
2021-11-09 07:03:42 +01:00
AC_DEFINE([COPYRIGHT_HOLDERS_FINAL], ["_COPYRIGHT_HOLDERS_FINAL"], [Copyright holder(s)])
2013-05-28 01:55:01 +02:00
AC_SUBST(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR)
AC_SUBST(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR)
AC_SUBST(CLIENT_VERSION_BUILD, _CLIENT_VERSION_BUILD)
AC_SUBST(CLIENT_VERSION_IS_RELEASE, _CLIENT_VERSION_IS_RELEASE)
AC_SUBST(COPYRIGHT_YEAR, _COPYRIGHT_YEAR)
2015-12-22 13:29:13 +01:00
AC_SUBST(COPYRIGHT_HOLDERS, "_COPYRIGHT_HOLDERS")
2016-01-28 05:52:52 +01:00
AC_SUBST(COPYRIGHT_HOLDERS_SUBSTITUTION, "_COPYRIGHT_HOLDERS_SUBSTITUTION")
2015-12-22 13:29:13 +01:00
AC_SUBST(COPYRIGHT_HOLDERS_FINAL, "_COPYRIGHT_HOLDERS_FINAL")
2016-04-01 18:19:28 +02:00
AC_SUBST(BITCOIN_DAEMON_NAME)
AC_SUBST(BITCOIN_GUI_NAME)
2022-08-09 10:08:21 +02:00
AC_SUBST(BITCOIN_TEST_NAME)
2016-04-01 18:19:28 +02:00
AC_SUBST(BITCOIN_CLI_NAME)
AC_SUBST(BITCOIN_TX_NAME)
2020-09-10 00:09:07 +02:00
AC_SUBST(BITCOIN_UTIL_NAME)
2021-09-01 21:46:51 +02:00
AC_SUBST(BITCOIN_CHAINSTATE_NAME)
2016-09-16 16:45:36 +02:00
AC_SUBST(BITCOIN_WALLET_TOOL_NAME)
2020-12-02 18:23:14 +01:00
AC_SUBST(BITCOIN_MP_NODE_NAME)
AC_SUBST(BITCOIN_MP_GUI_NAME)
2013-05-28 01:55:01 +02:00
2014-08-18 21:55:54 +02:00
AC_SUBST(RELDFLAGS)
2022-02-17 12:43:30 +01:00
AC_SUBST(CORE_LDFLAGS)
2022-02-17 12:31:36 +01:00
AC_SUBST(CORE_CPPFLAGS)
2022-02-17 17:16:52 +01:00
AC_SUBST(CORE_CXXFLAGS)
2018-03-15 13:05:48 +01:00
AC_SUBST(DEBUG_CPPFLAGS)
2018-05-22 23:28:17 +02:00
AC_SUBST(WARN_CXXFLAGS)
AC_SUBST(NOWARN_CXXFLAGS)
2018-03-15 13:05:48 +01:00
AC_SUBST(DEBUG_CXXFLAGS)
2017-02-21 17:56:26 +01:00
AC_SUBST(ERROR_CXXFLAGS)
2018-02-07 05:58:41 +01:00
AC_SUBST(GPROF_CXXFLAGS)
AC_SUBST(GPROF_LDFLAGS)
2015-11-10 02:50:25 +01:00
AC_SUBST(HARDENED_CXXFLAGS)
AC_SUBST(HARDENED_CPPFLAGS)
AC_SUBST(HARDENED_LDFLAGS)
AC_SUBST(PIC_FLAGS)
AC_SUBST(PIE_FLAGS)
2018-03-15 04:07:16 +01:00
AC_SUBST(SANITIZER_CXXFLAGS)
AC_SUBST(SANITIZER_LDFLAGS)
2017-04-13 19:09:19 +02:00
AC_SUBST(SSE42_CXXFLAGS)
2018-05-08 19:27:57 +02:00
AC_SUBST(SSE41_CXXFLAGS)
2021-07-20 20:18:43 +02:00
AC_SUBST(CLMUL_CXXFLAGS)
2017-09-27 10:45:12 +02:00
AC_SUBST(AVX2_CXXFLAGS)
2022-01-20 17:26:00 +01:00
AC_SUBST(X86_SHANI_CXXFLAGS)
2019-11-07 15:52:44 +01:00
AC_SUBST(ARM_CRC_CXXFLAGS)
2022-01-20 18:57:27 +01:00
AC_SUBST(ARM_SHANI_CXXFLAGS)
2014-10-15 00:03:52 +02:00
AC_SUBST(LIBTOOL_APP_LDFLAGS)
2020-10-15 15:50:00 +02:00
AC_SUBST(USE_SQLITE)
2020-10-19 20:17:58 +02:00
AC_SUBST(USE_BDB)
2019-10-30 20:08:23 +01:00
AC_SUBST(ENABLE_EXTERNAL_SIGNER)
2013-05-28 01:55:01 +02:00
AC_SUBST(USE_UPNP)
AC_SUBST(USE_QRCODE)
AC_SUBST(TESTDEFS)
2014-08-26 21:17:18 +02:00
AC_SUBST(MINIUPNPC_CPPFLAGS)
2014-10-13 05:28:58 +02:00
AC_SUBST(MINIUPNPC_LIBS)
2021-03-03 14:19:09 +01:00
AC_SUBST(NATPMP_CPPFLAGS)
2020-02-23 00:34:13 +01:00
AC_SUBST(NATPMP_LIBS)
2019-11-06 22:26:28 +01:00
AC_SUBST(HAVE_FDATASYNC)
AC_SUBST(HAVE_FULLFSYNC)
AC_SUBST(HAVE_O_CLOEXEC)
2019-11-07 15:52:44 +01:00
AC_SUBST(HAVE_BUILTIN_PREFETCH)
AC_SUBST(HAVE_MM_PREFETCH)
AC_SUBST(HAVE_STRONG_GETAUXVAL)
2020-08-28 11:09:58 +02:00
AC_SUBST(ANDROID_ARCH)
2021-11-26 17:27:48 +01:00
AC_SUBST(HAVE_EVHTTP_CONNECTION_GET_PEER_CONST_CHAR)
2017-03-21 19:47:20 +01:00
AC_CONFIG_FILES([Makefile src/Makefile doc/man/Makefile share/setup.nsi share/qt/Info.plist test/config.ini])
2016-06-10 08:56:42 +02:00
AC_CONFIG_FILES([contrib/devtools/split-debug.sh],[chmod +x contrib/devtools/split-debug.sh])
2017-12-26 18:12:04 +01:00
AM_COND_IF([HAVE_DOXYGEN], [AC_CONFIG_FILES([doc/Doxyfile])])
2022-04-11 21:45:22 +02:00
AC_CONFIG_LINKS([contrib/devtools/iwyu/bitcoin.core.imp:contrib/devtools/iwyu/bitcoin.core.imp])
2017-10-02 13:35:08 +02:00
AC_CONFIG_LINKS([contrib/filter-lcov.py:contrib/filter-lcov.py])
2022-04-25 11:33:32 +02:00
AC_CONFIG_LINKS([src/.bear-tidy-config:src/.bear-tidy-config])
2022-04-04 11:00:09 +02:00
AC_CONFIG_LINKS([src/.clang-tidy:src/.clang-tidy])
2017-03-09 15:53:26 +01:00
AC_CONFIG_LINKS([test/functional/test_runner.py:test/functional/test_runner.py])
2019-12-06 23:57:33 +01:00
AC_CONFIG_LINKS([test/fuzz/test_runner.py:test/fuzz/test_runner.py])
2021-09-02 10:49:21 +02:00
AC_CONFIG_LINKS([test/util/test_runner.py:test/util/test_runner.py])
2018-04-25 16:37:10 +02:00
AC_CONFIG_LINKS([test/util/rpcauth-test.py:test/util/rpcauth-test.py])
2022-07-09 17:45:19 +02:00
AC_CONFIG_LINKS([src/qt/Makefile:src/qt/Makefile])
AC_CONFIG_LINKS([src/qt/test/Makefile:src/qt/test/Makefile])
AC_CONFIG_LINKS([src/test/Makefile:src/test/Makefile])
2014-11-05 16:58:37 +01:00
dnl boost's m4 checks do something really nasty: they export these vars. As a
dnl result, they leak into secp256k1's configure and crazy things happen.
dnl Until this is fixed upstream and we've synced, we'll just un-export them.
2014-11-06 02:01:42 +01:00
CPPFLAGS_TEMP="$CPPFLAGS"
2014-11-05 20:48:11 +01:00
unset CPPFLAGS
2014-11-06 02:01:42 +01:00
CPPFLAGS="$CPPFLAGS_TEMP"
2024-01-19 11:08:41 +01:00
if test -n "$use_sanitizers"; then
export SECP_CFLAGS="$SECP_CFLAGS $SANITIZER_CFLAGS"
fi
2024-05-18 05:12:25 +02:00
ac_configure_args="${ac_configure_args} --disable-shared --with-pic --with-ecmult-gen-kb=86 --enable-benchmark=no --enable-module-recovery --disable-module-ecdh"
2016-01-14 01:26:23 +01:00
AC_CONFIG_SUBDIRS([src/secp256k1])
2014-11-05 16:58:37 +01:00
2013-05-28 01:55:01 +02:00
AC_OUTPUT
2014-07-23 07:00:55 +02:00
2015-08-26 12:05:36 +02:00
dnl Replace the BUILDDIR path with the correct Windows path if compiling on Native Windows
case ${OS} in
*Windows*)
2017-03-21 19:47:20 +01:00
sed 's/BUILDDIR="\/\([[a-z]]\)/BUILDDIR="\1:/' test/config.ini > test/config-2.ini
mv test/config-2.ini test/config.ini
2015-08-26 12:05:36 +02:00
;;
esac
2016-11-14 10:55:56 +01:00
2023-11-03 17:46:07 +01:00
dnl An old hack similar to a98356fee to remove hard-coded
dnl bind_at_load flag from libtool
case $host in
*darwin*)
AC_MSG_RESULT([Removing -Wl,bind_at_load from libtool.])
sed < libtool > libtool-2 '/bind_at_load/d'
mv libtool-2 libtool
chmod 755 libtool
;;
esac
2017-12-31 20:33:09 +01:00
echo
2016-11-14 10:55:56 +01:00
echo "Options used to compile and link:"
2019-10-30 20:08:23 +01:00
echo " external signer = $use_external_signer"
echo " multiprocess = $build_multiprocess"
echo " with wallet = $enable_wallet"
2021-11-24 13:16:53 +01:00
if test "$enable_wallet" != "no"; then
2019-10-30 20:08:23 +01:00
echo " with sqlite = $use_sqlite"
echo " with bdb = $use_bdb"
2020-10-15 15:50:00 +02:00
fi
2021-02-24 11:22:42 +01:00
echo " with gui / qt = $bitcoin_enable_qt"
2021-11-24 13:16:53 +01:00
if test $bitcoin_enable_qt != "no"; then
2021-02-24 11:22:42 +01:00
echo " with qr = $use_qr"
2016-11-14 10:55:56 +01:00
fi
2019-10-30 20:08:23 +01:00
echo " with zmq = $use_zmq"
2021-11-24 13:16:53 +01:00
if test $enable_fuzz = "no"; then
2019-10-30 20:08:23 +01:00
echo " with test = $use_tests"
2020-12-10 00:35:05 +01:00
else
2019-10-30 20:08:23 +01:00
echo " with test = not building test_bitcoin because fuzzing is enabled"
2019-01-26 00:35:36 +01:00
fi
2022-02-14 09:41:50 +01:00
echo " with fuzz binary = $enable_fuzz_binary"
2019-10-30 20:08:23 +01:00
echo " with bench = $use_bench"
echo " with upnp = $use_upnp"
echo " with natpmp = $use_natpmp"
2021-12-07 19:19:59 +01:00
echo " USDT tracing = $use_usdt"
2019-10-30 20:08:23 +01:00
echo " sanitizers = $use_sanitizers"
echo " debug enabled = $enable_debug"
echo " gprof enabled = $enable_gprof"
echo " werror = $enable_werror"
2017-12-31 20:33:09 +01:00
echo
2022-01-03 06:06:55 +01:00
echo " target os = $host_os"
2019-10-30 20:08:23 +01:00
echo " build os = $build_os"
2016-11-14 10:55:56 +01:00
echo
2019-10-30 20:08:23 +01:00
echo " CC = $CC"
2024-01-19 11:08:41 +01:00
echo " CFLAGS = $PTHREAD_CFLAGS $SANITIZER_CFLAGS $CFLAGS"
2022-02-17 12:31:36 +01:00
echo " CPPFLAGS = $DEBUG_CPPFLAGS $HARDENED_CPPFLAGS $CORE_CPPFLAGS $CPPFLAGS"
2019-10-30 20:08:23 +01:00
echo " CXX = $CXX"
2024-01-08 16:48:35 +01:00
echo " CXXFLAGS = $CORE_CXXFLAGS $DEBUG_CXXFLAGS $HARDENED_CXXFLAGS $WARN_CXXFLAGS $NOWARN_CXXFLAGS $ERROR_CXXFLAGS $GPROF_CXXFLAGS $SANITIZER_CXXFLAGS $CXXFLAGS"
echo " LDFLAGS = $PTHREAD_LIBS $HARDENED_LDFLAGS $GPROF_LDFLAGS $SANITIZER_LDFLAGS $CORE_LDFLAGS $LDFLAGS"
2022-07-18 16:58:02 +02:00
echo " AR = $AR"
2019-10-30 20:08:23 +01:00
echo " ARFLAGS = $ARFLAGS"
2017-12-31 20:33:09 +01:00
echo