mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
Build dlopenable modules with `-module'.
* test-suite/standalone/Makefile.am (libtest_asmobs_la_LDFLAGS, libtest_ffi_la_LDFLAGS, libtest_extensions_la_LDFLAGS): Add `-module'.
This commit is contained in:
parent
a94469c651
commit
cb26e97a88
1 changed files with 3 additions and 3 deletions
|
@ -82,7 +82,7 @@ TESTS += test-round
|
|||
noinst_LTLIBRARIES += libtest-asmobs.la
|
||||
libtest_asmobs_la_SOURCES = test-asmobs-lib.c
|
||||
libtest_asmobs_la_CFLAGS = ${test_cflags}
|
||||
libtest_asmobs_la_LDFLAGS = -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_asmobs_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_asmobs_la_LIBADD = ${top_builddir}/libguile/libguile-@GUILE_EFFECTIVE_VERSION@.la
|
||||
BUILT_SOURCES += test-asmobs-lib.x
|
||||
check_SCRIPTS += test-asmobs
|
||||
|
@ -92,7 +92,7 @@ TESTS += test-asmobs
|
|||
noinst_LTLIBRARIES += libtest-ffi.la
|
||||
libtest_ffi_la_SOURCES = test-ffi-lib.c
|
||||
libtest_ffi_la_CFLAGS = ${test_cflags}
|
||||
libtest_ffi_la_LDFLAGS = -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_ffi_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_ffi_la_LIBADD = ${top_builddir}/libguile/libguile-@GUILE_EFFECTIVE_VERSION@.la
|
||||
check_SCRIPTS += test-ffi
|
||||
TESTS += test-ffi
|
||||
|
@ -158,7 +158,7 @@ TESTS += test-scm-take-u8vector
|
|||
noinst_LTLIBRARIES += libtest-extensions.la
|
||||
libtest_extensions_la_SOURCES = test-extensions-lib.c
|
||||
libtest_extensions_la_CFLAGS = ${test_cflags}
|
||||
libtest_extensions_la_LDFLAGS = -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_extensions_la_LDFLAGS = -module -no-undefined -rpath `pwd` # so libtool will really build an .so
|
||||
libtest_extensions_la_LIBADD = ${top_builddir}/libguile/libguile-@GUILE_EFFECTIVE_VERSION@.la
|
||||
check_SCRIPTS += test-extensions
|
||||
TESTS += test-extensions
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue