Skip to content

Commit 69c6dee

Browse files
committed
build: use the secp object files rather than its archive for linking
archive-within-archive appears to be unsupported in later libtools/on apple systems.
1 parent 1eb66b5 commit 69c6dee

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

configure.ac

+6-11
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,6 @@ AC_SUBST([NOOPT_CFLAGS])
171171
AC_SUBST([NOALIAS_CFLAGS])
172172
AC_SUBST([NOBUILTIN_CFLAGS])
173173

174-
# Under OSX the compiler accepts this flag but the linker then fails.
175-
if test "x$is_osx" != "xyes"; then
176-
AX_CHECK_COMPILE_FLAG([-Wl,--whole-archive], [whole_archive=yes])
177-
fi
178-
179174
# SWIG versions vary in generated code quality; skip warnings
180175
SWIG_WARN_CFLAGS="-fno-strict-aliasing"
181176
AX_CHECK_COMPILE_FLAG([-Wno-shadow], [SWIG_WARN_CFLAGS="$SWIG_WARN_CFLAGS -Wno-shadow"])
@@ -246,18 +241,18 @@ fi
246241
# target and so won't force all object files in the library to be
247242
# included in ours - despite the fact that we are making a shared
248243
# library and linking to a static one. This is broken and we work
249-
# around it by hacking the whole-archive flags into the _LDADD variable
250-
# for wallycore.
244+
# around it by hacking the secp objects directly into the library
245+
# via the _LDADD variable for wallycore.
246+
# We previously achieved this by adding the libsecp256k1.a archive,
247+
# but changes to libtool and apples linkers mean that
248+
# archives-within-archives no longer work.
251249
# Because automake tries to police its users very strictly and fails
252250
# hard when flags are passed in this way, we have to substitute the
253251
# flags here.
254252
# Because libtool both intercepts -Wl and arbitrarily re-orders its
255253
# command line inputs, we have to concoct a single expression to
256254
# enforce linking that cannot be split, hence the below expression.
257-
LIBADD_SECP256K1="secp256k1/.libs/libsecp256k1.a"
258-
if test "x$whole_archive" == "xyes"; then
259-
LIBADD_SECP256K1="-Wl,--whole-archive,secp256k1/.libs/libsecp256k1.a,--no-whole-archive"
260-
fi
255+
LIBADD_SECP256K1="-Wl,secp256k1/src/libsecp256k1_la-secp256k1.${OBJEXT},secp256k1/src/libsecp256k1_precomputed_la-precomputed_ecmult_gen.${OBJEXT},secp256k1/src/libsecp256k1_precomputed_la-precomputed_ecmult.${OBJEXT}"
261256
AC_SUBST([LIBADD_SECP256K1])
262257

263258
#

0 commit comments

Comments
 (0)