1 AM_CPPFLAGS = -I $(top_srcdir)/include -I $(top_srcdir)
3 # May be used by toolexeclibdir.
4 gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
6 DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -DASAN_HAS_EXCEPTIONS=1 -DASAN_NEEDS_SEGV=1 -DCAN_SANITIZE_UB=0
8 DEFS += -DMAC_INTERPOSE_FUNCTIONS -DMISSING_BLOCKS_SUPPORT
10 AM_CXXFLAGS = -Wall -W -Wno-unused-parameter -Wwrite-strings -pedantic -Wno-long-long -fPIC -fno-builtin -fno-exceptions -fno-rtti -fomit-frame-pointer -funwind-tables -fvisibility=hidden -Wno-variadic-macros -fno-ipa-icf
11 AM_CXXFLAGS += $(LIBSTDCXX_RAW_CXX_CXXFLAGS)
12 AM_CXXFLAGS += -std=gnu++11
13 AM_CXXFLAGS += $(EXTRA_CXXFLAGS)
14 ACLOCAL_AMFLAGS = -I $(top_srcdir) -I $(top_srcdir)/config
16 toolexeclib_LTLIBRARIES = libasan.la
17 nodist_toolexeclib_HEADERS = libasan_preinit.o
23 asan_descriptions.cc \
28 asan_interceptors.cc \
29 asan_interceptors_memintrinsics.cc \
32 asan_malloc_linux.cc \
35 asan_memory_profile.cc \
41 asan_shadow_setup.cc \
44 asan_suppressions.cc \
47 asan_win_dll_thunk.cc \
48 asan_win_dynamic_runtime_thunk.cc
50 libasan_la_SOURCES = $(asan_files)
51 libasan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la $(top_builddir)/lsan/libsanitizer_lsan.la
52 if !USING_MAC_INTERPOSE
53 libasan_la_LIBADD += $(top_builddir)/interception/libinterception.la
55 if LIBBACKTRACE_SUPPORTED
56 libasan_la_LIBADD += $(top_builddir)/libbacktrace/libsanitizer_libbacktrace.la
58 libasan_la_LIBADD += $(LIBSTDCXX_RAW_CXX_LDFLAGS)
60 libasan_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` $(link_libasan)
62 libasan_preinit.o: asan_preinit.o
65 # Work around what appears to be a GNU make bug handling MAKEFLAGS
66 # values defined in terms of make variables, as is the case for CC and
67 # friends when we are called from the top level Makefile.
69 "AR_FLAGS=$(AR_FLAGS)" \
70 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
72 "CXXFLAGS=$(CXXFLAGS)" \
73 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
74 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
75 "INSTALL=$(INSTALL)" \
76 "INSTALL_DATA=$(INSTALL_DATA)" \
77 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
78 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
79 "JC1FLAGS=$(JC1FLAGS)" \
80 "LDFLAGS=$(LDFLAGS)" \
81 "LIBCFLAGS=$(LIBCFLAGS)" \
82 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
84 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
85 "PICFLAG=$(PICFLAG)" \
86 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
88 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
89 "exec_prefix=$(exec_prefix)" \
90 "infodir=$(infodir)" \
93 "includedir=$(includedir)" \
97 "LIBCFLAGS=$(LIBCFLAGS)" \
99 "PICFLAG=$(PICFLAG)" \
105 ## ################################################################