X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=src%2Fbindings%2Fpython%2Fbt2%2FMakefile.am;h=c8e3eb44ae99e391fba19fccd46b1d7048a00a9a;hb=0b0893d4a069f17d1326ebc3bfc9f9f987f411f3;hp=ccd56bbbaec30e1f0a34bbf965d4c472627f869f;hpb=5038e25680486da1eb36b0f8f020e6609618dda1;p=babeltrace.git diff --git a/src/bindings/python/bt2/Makefile.am b/src/bindings/python/bt2/Makefile.am index ccd56bbb..c8e3eb44 100644 --- a/src/bindings/python/bt2/Makefile.am +++ b/src/bindings/python/bt2/Makefile.am @@ -1,7 +1,9 @@ +# SPDX-License-Identifier: MIT + # Since the shared object used by the python bindings is not built with # libtool, we need to add the directory containing libbabeltrace2 to the # linker path. -AM_LDFLAGS=-L$(top_builddir)/src/lib/.libs +AM_LDFLAGS += -L$(top_builddir)/src/lib/.libs INSTALLED_FILES=$(builddir)/installed_files.txt @@ -110,10 +112,17 @@ GENERATED_BINDINGS_DEPS = \ # Disable -Wshadow for that file. WARN_CFLAGS = -Wno-shadow +WARN_CFLAGS += -Wno-null-dereference + +# Python 3.8 with SWIG 4.0.2 generates a deprecated warning for 'tp_print' +# and in general there is not much we can do about deprecations in generated +# code. +WARN_CFLAGS += -Wno-deprecated-declarations + BUILD_FLAGS=CC="$(CC)" \ CFLAGS="$(GLIB_CFLAGS) $(AM_CFLAGS) $(CFLAGS) $(WARN_CFLAGS)" \ CPPFLAGS="$(AM_CPPFLAGS) $(CPPFLAGS) -I$(srcdir)/bt2" \ - LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) $(LIBS)" + LDFLAGS="$(AM_LDFLAGS) $(LDFLAGS) $(GLIB_LIBS) $(PYTHON_LDFLAGS) $(LIBS)" all-local: build-python-bindings.stamp