raspbian: add missing library
* tests/Makefile.am, python/Makefile.am: Here.
This commit is contained in:
parent
9a8745fcff
commit
61561ee9ac
2 changed files with 10 additions and 8 deletions
|
|
@ -1,5 +1,5 @@
|
|||
## -*- coding: utf-8 -*-
|
||||
## Copyright (C) 2010, 2011, 2013-2019 Laboratoire de Recherche
|
||||
## Copyright (C) 2010, 2011, 2013-2020 Laboratoire de Recherche
|
||||
## et Development de l'Epita (LRDE).
|
||||
## Copyright (C) 2003, 2004 Laboratoire d'Informatique de Paris 6 (LIP6),
|
||||
## département Systèmes Répartis Coopératifs (SRC), Université Pierre
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
AUTOMAKE_OPTIONS = subdir-objects
|
||||
|
||||
AM_CPPFLAGS = -I$(PYTHONINC) -I$(top_builddir) -I$(top_srcdir) \
|
||||
$(BUDDY_CPPFLAGS) -DSWIG_TYPE_TABLE=spot
|
||||
$(BUDDY_CPPFLAGS) -lpthread -latomic -DSWIG_TYPE_TABLE=spot
|
||||
|
||||
SWIGFLAGS = -c++ -python -py3 -O -MD
|
||||
|
||||
|
|
@ -71,7 +71,7 @@ am__depfiles_remade = ./$(DEPDIR)/buddy_wrap.Plo \
|
|||
|
||||
spot__impl_la_SOURCES = spot/impl_wrap.cxx
|
||||
spot__impl_la_LDFLAGS = -avoid-version -module $(SYMBOLIC_LDFLAGS)
|
||||
spot__impl_la_LIBADD = $(top_builddir)/spot/libspot.la
|
||||
spot__impl_la_LIBADD = $(top_builddir)/spot/libspot.la -lpthread -latomic
|
||||
|
||||
am__depfiles_remade += ./spot/$(DEPDIR)/impl_wrap.Pcxx
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./spot/$(DEPDIR)/impl_wrap.Pcxx@am__quote@ # am--include-marker
|
||||
|
|
@ -91,7 +91,8 @@ spot/impl.py: spot/impl.i
|
|||
spot__ltsmin_la_SOURCES = spot/ltsmin_wrap.cxx
|
||||
spot__ltsmin_la_LDFLAGS = -avoid-version -module $(SYMBOLIC_LDFLAGS)
|
||||
spot__ltsmin_la_LIBADD = $(top_builddir)/spot/libspot.la \
|
||||
$(top_builddir)/spot/ltsmin/libspotltsmin.la
|
||||
$(top_builddir)/spot/ltsmin/libspotltsmin.la \
|
||||
-lpthread -latomic
|
||||
|
||||
am__depfiles_remade += ./spot/$(DEPDIR)/ltsmin_wrap.Pcxx
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./spot/$(DEPDIR)/ltsmin_wrap.Pcxx@am__quote@ # am--include-marker
|
||||
|
|
@ -109,7 +110,8 @@ spot/ltsmin.py: spot/ltsmin.i
|
|||
spot__gen_la_SOURCES = spot/gen_wrap.cxx
|
||||
spot__gen_la_LDFLAGS = -avoid-version -module $(SYMBOLIC_LDFLAGS)
|
||||
spot__gen_la_LIBADD = $(top_builddir)/spot/libspot.la \
|
||||
$(top_builddir)/spot/gen/libspotgen.la
|
||||
$(top_builddir)/spot/gen/libspotgen.la \
|
||||
-lpthread -latomic
|
||||
|
||||
am__depfiles_remade += ./spot/$(DEPDIR)/gen_wrap.Pcxx
|
||||
@AMDEP_TRUE@@am__include@ @am__quote@./spot/$(DEPDIR)/gen_wrap.Pcxx@am__quote@ # am--include-marker
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ AM_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) $(BUDDY_CPPFLAGS) \
|
|||
AM_CXXFLAGS = $(WARNING_CXXFLAGS)
|
||||
LDADD = $(top_builddir)/spot/libspot.la \
|
||||
$(top_builddir)/buddy/src/libbddx.la \
|
||||
$(LIBLTDL) -lpthread
|
||||
$(LIBLTDL) -lpthread -latomic
|
||||
|
||||
# Explicitely set it to avoid default value ".test"
|
||||
TEST_EXTENSIONS =
|
||||
|
|
@ -461,7 +461,7 @@ check_PROGRAMS += ltsmin/modelcheck
|
|||
check_PROGRAMS += ltsmin/testconvert
|
||||
ltsmin_modelcheck_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) \
|
||||
$(BUDDY_CPPFLAGS) \-I$(top_builddir)/lib -I$(top_srcdir)/lib
|
||||
ltsmin_modelcheck_CXXFLAGS = $(CXXFLAGS) -pthread
|
||||
ltsmin_modelcheck_CXXFLAGS = $(CXXFLAGS) -pthread -latomic
|
||||
ltsmin_modelcheck_SOURCES = ltsmin/modelcheck.cc
|
||||
ltsmin_modelcheck_LDADD = \
|
||||
$(top_builddir)/bin/libcommon.a \
|
||||
|
|
@ -471,7 +471,7 @@ ltsmin_modelcheck_LDADD = \
|
|||
|
||||
ltsmin_testconvert_CPPFLAGS = -I$(top_builddir) -I$(top_srcdir) \
|
||||
$(BUDDY_CPPFLAGS) \-I$(top_builddir)/lib -I$(top_srcdir)/lib
|
||||
ltsmin_testconvert_CXXFLAGS = $(CXXFLAGS) -pthread
|
||||
ltsmin_testconvert_CXXFLAGS = $(CXXFLAGS) -pthread -latomic
|
||||
ltsmin_testconvert_SOURCES = ltsmin/testconvert.cc
|
||||
ltsmin_testconvert_LDADD = \
|
||||
$(top_builddir)/bin/libcommon.a \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue