]> git.ipfire.org Git - thirdparty/gcc.git/blame - libsanitizer/asan/Makefile.am
re PR sanitizer/56393 (SIGSEGV when -fsanitize=address and dynamic lib with global...
[thirdparty/gcc.git] / libsanitizer / asan / Makefile.am
CommitLineData
f35db108
WM
1AM_CPPFLAGS = -I $(top_srcdir)/include -I $(top_srcdir)
2
f64bcb29
L
3# May be used by toolexeclibdir.
4gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
5
f35db108 6DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -DASAN_HAS_EXCEPTIONS=1 -DASAN_FLEXIBLE_MAPPING_AND_OFFSET=0 -DASAN_NEEDS_SEGV=1
8c4d267c
KS
7if USING_MAC_INTERPOSE
8DEFS += -DMAC_INTERPOSE_FUNCTIONS -DMISSING_BLOCKS_SUPPORT
9endif
19006c45 10AM_CXXFLAGS = -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -Wno-long-long -fPIC -fno-builtin -fno-exceptions -fomit-frame-pointer -funwind-tables -fvisibility=hidden -Wno-variadic-macros
d10a2df2 11AM_CXXFLAGS += $(LIBSTDCXX_RAW_CXX_CXXFLAGS)
f64bcb29 12ACLOCAL_AMFLAGS = -I $(top_srcdir) -I $(top_srcdir)/config
f35db108
WM
13
14toolexeclib_LTLIBRARIES = libasan.la
7d613735 15nodist_toolexeclib_HEADERS = libasan_preinit.o
f35db108
WM
16
17asan_files = \
18 asan_allocator.cc \
e9772e16 19 asan_allocator2.cc \
f35db108
WM
20 asan_interceptors.cc \
21 asan_mac.cc \
22 asan_malloc_mac.cc \
23 asan_new_delete.cc \
24 asan_posix.cc \
25 asan_rtl.cc \
26 asan_stats.cc \
27 asan_thread_registry.cc \
e9772e16 28 asan_fake_stack.cc \
f35db108
WM
29 asan_globals.cc \
30 asan_linux.cc \
31 asan_malloc_linux.cc \
32 asan_malloc_win.cc \
33 asan_poisoning.cc \
34 asan_report.cc \
35 asan_stack.cc \
36 asan_thread.cc \
37 asan_win.cc
38
8c4d267c
KS
39libasan_la_SOURCES = $(asan_files)
40if USING_MAC_INTERPOSE
e1e953d9 41libasan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la
8c4d267c 42else
e1e953d9 43libasan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la $(top_builddir)/interception/libinterception.la
8c4d267c 44endif
7f7162cf 45libasan_la_LIBADD += $(LIBSTDCXX_RAW_CXX_LDFLAGS)
8c4d267c 46
f35db108
WM
47libasan_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` -lpthread -ldl
48
7d613735
JJ
49libasan_preinit.o: asan_preinit.o
50 cp $< $@
51
b488a2c7
L
52# Work around what appears to be a GNU make bug handling MAKEFLAGS
53# values defined in terms of make variables, as is the case for CC and
54# friends when we are called from the top level Makefile.
55AM_MAKEFLAGS = \
56 "AR_FLAGS=$(AR_FLAGS)" \
57 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
58 "CFLAGS=$(CFLAGS)" \
59 "CXXFLAGS=$(CXXFLAGS)" \
60 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
61 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
62 "INSTALL=$(INSTALL)" \
63 "INSTALL_DATA=$(INSTALL_DATA)" \
64 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
65 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
66 "JC1FLAGS=$(JC1FLAGS)" \
67 "LDFLAGS=$(LDFLAGS)" \
68 "LIBCFLAGS=$(LIBCFLAGS)" \
69 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
70 "MAKE=$(MAKE)" \
71 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
72 "PICFLAG=$(PICFLAG)" \
73 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
74 "SHELL=$(SHELL)" \
75 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
76 "exec_prefix=$(exec_prefix)" \
77 "infodir=$(infodir)" \
78 "libdir=$(libdir)" \
79 "prefix=$(prefix)" \
80 "includedir=$(includedir)" \
81 "AR=$(AR)" \
82 "AS=$(AS)" \
83 "LD=$(LD)" \
84 "LIBCFLAGS=$(LIBCFLAGS)" \
85 "NM=$(NM)" \
86 "PICFLAG=$(PICFLAG)" \
87 "RANLIB=$(RANLIB)" \
88 "DESTDIR=$(DESTDIR)"
89
e8adb21b
L
90MAKEOVERRIDES=
91
f35db108
WM
92## ################################################################
93