Merge pull request #64 from real-or-random/zkp-arm-asm-exhaustive

Add $(COMMON_LIB) to exhaustive tests to fix ARM asm build
This commit is contained in:
Jonas Nick 2019-05-24 20:33:28 +00:00 committed by GitHub
commit 6395289e32
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -115,7 +115,7 @@ exhaustive_tests_CPPFLAGS = -DSECP256K1_BUILD -I$(top_srcdir)/src $(SECP_INCLUDE
if !ENABLE_COVERAGE
exhaustive_tests_CPPFLAGS += -DVERIFY
endif
exhaustive_tests_LDADD = $(SECP_LIBS)
exhaustive_tests_LDADD = $(SECP_LIBS) $(COMMON_LIB)
exhaustive_tests_LDFLAGS = -static
TESTS += exhaustive_tests
endif