@@ -171,11 +171,6 @@ AC_SUBST([NOOPT_CFLAGS])
171
171
AC_SUBST ( [ NOALIAS_CFLAGS] )
172
172
AC_SUBST ( [ NOBUILTIN_CFLAGS] )
173
173
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
-
179
174
# SWIG versions vary in generated code quality; skip warnings
180
175
SWIG_WARN_CFLAGS="-fno-strict-aliasing"
181
176
AX_CHECK_COMPILE_FLAG ( [ -Wno-shadow] , [ SWIG_WARN_CFLAGS="$SWIG_WARN_CFLAGS -Wno-shadow"] )
246
241
# target and so won't force all object files in the library to be
247
242
# included in ours - despite the fact that we are making a shared
248
243
# 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.
251
249
# Because automake tries to police its users very strictly and fails
252
250
# hard when flags are passed in this way, we have to substitute the
253
251
# flags here.
254
252
# Because libtool both intercepts -Wl and arbitrarily re-orders its
255
253
# command line inputs, we have to concoct a single expression to
256
254
# 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}"
261
256
AC_SUBST ( [ LIBADD_SECP256K1] )
262
257
263
258
#
0 commit comments