1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

test-foreign-object-c should link libgnu

For MinGW, the foreign object test requires stubs provided by libgnu

* test-suite/standalone/Makefile.am (test_foreign_object_c_LDADD): add libgnu
This commit is contained in:
Michael Gran 2020-11-23 18:43:06 -08:00
parent 93b8ab2994
commit dd97382d9a

View file

@ -1,7 +1,7 @@
## Process this file with automake to produce Makefile.in.
##
## Copyright 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
## 2011, 2012, 2013, 2014 Free Software Foundation, Inc.
## 2011, 2012, 2013, 2014, 2020 Free Software Foundation, Inc.
##
## This file is part of GUILE.
##
@ -139,7 +139,7 @@ TESTS += test-foreign-object-scm
# test-foreign-object-c
test_foreign_object_c_SOURCES = test-foreign-object-c.c
test_foreign_object_c_CFLAGS = ${test_cflags}
test_foreign_object_c_LDADD = $(LIBGUILE_LDADD)
test_foreign_object_c_LDADD = $(LIBGUILE_LDADD) $(top_builddir)/lib/libgnu.la
check_PROGRAMS += test-foreign-object-c
TESTS += test-foreign-object-c