]> git.ipfire.org Git - thirdparty/gcc.git/blob - lto-plugin/Makefile.am
Detect overflow by atomic functions [PR102453].
[thirdparty/gcc.git] / lto-plugin / Makefile.am
1 ## Process this file with automake to produce Makefile.in.
2
3 ACLOCAL_AMFLAGS = -I .. -I ../config
4 AUTOMAKE_OPTIONS = no-dependencies
5
6 gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
7 target_noncanonical := @target_noncanonical@
8 libexecsubdir := $(libexecdir)/gcc/$(real_target_noncanonical)/$(gcc_version)$(accel_dir_suffix)
9
10 AM_CPPFLAGS = -I$(top_srcdir)/../include $(DEFS)
11 AM_CFLAGS = @ac_lto_plugin_warn_cflags@ $(CET_HOST_FLAGS)
12 AM_LDFLAGS = @ac_lto_plugin_ldflags@
13 AM_LIBTOOLFLAGS = --tag=disable-static
14 override CFLAGS := $(filter-out -fsanitize=address -fsanitize=hwaddress,$(CFLAGS))
15 override LDFLAGS := $(filter-out -fsanitize=address -fsanitize=hwaddress,$(LDFLAGS))
16
17 libexecsub_LTLIBRARIES = liblto_plugin.la
18 gcc_build_dir = @gcc_build_dir@
19 in_gcc_libs = $(foreach lib, $(libexecsub_LTLIBRARIES), $(gcc_build_dir)/$(lib))
20
21 liblto_plugin_la_SOURCES = lto-plugin.c
22 # Note that we intentionally override the bindir supplied by ACX_LT_HOST_FLAGS.
23 liblto_plugin_la_LDFLAGS = $(AM_LDFLAGS) \
24 $(lt_host_flags) -module -avoid-version -bindir $(libexecsubdir) \
25 -export-symbols-regex onload
26 # Can be simplified when libiberty becomes a normal convenience library.
27 libiberty = $(with_libiberty)/libiberty.a
28 libiberty_noasan = $(with_libiberty)/noasan/libiberty.a
29 libiberty_pic = $(with_libiberty)/pic/libiberty.a
30 Wc=-Wc,
31 liblto_plugin_la_LIBADD = \
32 $(if $(wildcard $(libiberty_noasan)),$(Wc)$(libiberty_noasan), \
33 $(if $(wildcard $(libiberty_pic)),$(Wc)$(libiberty_pic),))
34 liblto_plugin_la_LDFLAGS += \
35 $(if $(wildcard $(libiberty_noasan)),, \
36 $(if $(wildcard $(libiberty_pic)),,-Wc,$(libiberty)))
37 liblto_plugin_la_DEPENDENCIES = \
38 $(if $(wildcard $(libiberty_noasan)),$(libiberty_noasan), \
39 $(if $(wildcard $(libiberty_pic)),$(libiberty_pic),))
40 LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
41 liblto_plugin_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
42 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
43 $(liblto_plugin_la_LDFLAGS) $(LTLDFLAGS) -o $@
44
45 all-local: $(in_gcc_libs)
46
47 $(in_gcc_libs) : $(gcc_build_dir)/%: %
48 @if test "X`dlname=; . ./$*; echo dlname:$$dlname`" = "Xdlname:"; then \
49 echo WARNING: $* is static, not copying to $@ >&2 ; \
50 else \
51 $(mkinstalldirs) $(gcc_build_dir) && \
52 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $* `pwd`/$@ ; \
53 fi