]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libvtv/Makefile.am
Move bndrng from access_ref to access_data.
[thirdparty/gcc.git] / libvtv / Makefile.am
index 61118988993592af9cc4616d0017ad8d708276cc..3d3d220dd23aed1432368e84083ae7db9c9e5030 100644 (file)
@@ -1,6 +1,6 @@
 ## Makefile for the VTV library.
 ##
-## Copyright (C) 2013 Free Software Foundation, Inc.
+## Copyright (C) 2013-2021 Free Software Foundation, Inc.
 ##
 ## Process this file with automake to produce Makefile.in.
 ##
 ## along with this library; see the file COPYING3.  If not see
 ## <http://www.gnu.org/licenses/>.
 
-SUBDIRS = testsuite
+if ENABLE_VTABLE_VERIFY
+  SUBDIRS = testsuite
+else
+  SUBDIRS=
+endif
 
 ACLOCAL_AMFLAGS = -I .. -I ../config
 
 # May be used by toolexeclibdir.
-gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
+gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
 
 DEFS = @DEFS@
 AM_CPPFLAGS = -I$(top_srcdir)/../include
@@ -34,7 +38,12 @@ AM_CXXFLAGS = $(XCFLAGS)
 AM_CXXFLAGS += $(LIBSTDCXX_RAW_CXX_CXXFLAGS)
 AM_CXXFLAGS += -Wl,-u_vtable_map_vars_start,-u_vtable_map_vars_end
 
-toolexeclib_LTLIBRARIES = libvtv.la
+if ENABLE_VTABLE_VERIFY
+  toolexeclib_LTLIBRARIES = libvtv.la
+if VTV_CYGMIN
+  toolexeclib_LTLIBRARIES += libvtv_stubs.la
+endif
+endif
 
 vtv_headers = \
        vtv_map.h \
@@ -51,6 +60,11 @@ vtv_sources = \
         vtv_utils.cc \
        vtv_end.c
 
+vtv_stubs_sources = \
+       vtv_start.c \
+       vtv_stubs.cc \
+       vtv_end.c
+
 libvtv_includedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
 
 # Link in vtv_start and vtv_end. 
@@ -63,12 +77,44 @@ vtv_end.c:
        rm -f $@
        $(LN_S) $(toplevel_srcdir)/libgcc/vtv_end.c $@
 
-libvtv_la_SOURCES = $(vtv_sources)
-libvtv_include_HEADERS = $(vtv_headers)
+if VTV_NO_OBSTACK
+  obstack.c:
+         rm -f $@
+         $(LN_S) $(toplevel_srcdir)/libiberty/obstack.c $@
+         > config.h
+endif
+
+if VTV_CYGMIN
+  vtv_stubs.cc:
+         rm -f $@
+         $(LN_S) $(toplevel_srcdir)/libstdc++-v3/libsupc++/vtv_stubs.cc $@
+endif
+
+if VTV_CYGMIN
+  libvtv_la_LIBADD = -lpsapi
+  libvtv_la_LDFLAGS = $(lt_host_flags)
+  libvtv_stubs_la_LDFLAGS = $(lt_host_flags)
+endif
+
+if ENABLE_VTABLE_VERIFY
+  libvtv_la_SOURCES = $(vtv_sources)
+if VTV_NO_OBSTACK
+  libvtv_la_SOURCES += obstack.c
+endif
+if VTV_CYGMIN
+  libvtv_stubs_la_SOURCES = $(vtv_stubs_sources)
+endif
+  libvtv_include_HEADERS = $(vtv_headers)
+else
+  libvtv_la_SOURCES =
+  libvtv_include_HEADERS =
+endif
 
 # Least ordering for dependencies mean linking w/o libstdc++ for as
 # long as the development of libvtv does not absolutely require it.
 CXXVTV=$(CC_FOR_TARGET)
+CXXLD=$(CC_FOR_TARGET)
+
 LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
        --mode=compile $(CXXVTV) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
        $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
@@ -76,3 +122,5 @@ LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
 CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
        --mode=link $(CXXVTV) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
        $(LDFLAGS) -o $@
+
+include $(top_srcdir)/../multilib.am