diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-05-07 19:25:31 +0300 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2021-07-27 14:53:24 +0300 |
commit | e4c8bb62e4a6873c45f42d0d2a24927cb241a0ea (patch) | |
tree | f6bfb6c2aee9a2c527e4207f720f6f372ecaf936 /src/Makefile.test.include | |
parent | 741749a6159eb68dd8a3c5ef0d1701337931e6df (diff) |
build: Fix undefined reference to __mulodi4
When compiling with clang on 32-bit systems the __mulodi4 symbol is
defined in compiler-rt only.
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index d55f5e1850..15929e7352 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -200,7 +200,7 @@ if ENABLE_FUZZ_BINARY test_fuzz_fuzz_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) test_fuzz_fuzz_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) test_fuzz_fuzz_LDADD = $(FUZZ_SUITE_LD_COMMON) -test_fuzz_fuzz_LDFLAGS = $(FUZZ_SUITE_LDFLAGS_COMMON) +test_fuzz_fuzz_LDFLAGS = $(FUZZ_SUITE_LDFLAGS_COMMON) $(RUNTIME_LDFLAGS) test_fuzz_fuzz_SOURCES = \ test/fuzz/addition_overflow.cpp \ test/fuzz/addrdb.cpp \ |