mirror of
https://gcc.gnu.org/git/gcc.git
synced 2024-11-27 05:44:15 +08:00
darwin.h (LINK_COMMAND_SPEC_A): Revise sanitizer specs to include sanitize(undefined).
gcc: * config/darwin.h (LINK_COMMAND_SPEC_A): Revise sanitizer specs to include sanitize(undefined). libsanitizer: * ubsan/Makefile.am (libubsan_la_LIBADD): Revise to omit libinterception.la for Darwin. * ubsan/Makefile.in: Regenerate. From-SVN: r202144
This commit is contained in:
parent
31f1f73b3e
commit
0cea211ebd
@ -1,3 +1,8 @@
|
||||
2013-09-01 Iain Sandoe <iain@codesourcery.com>
|
||||
|
||||
* config/darwin.h (LINK_COMMAND_SPEC_A): Revise sanitizer specs to
|
||||
include sanitize(undefined).
|
||||
|
||||
2013-08-31 Jan Hubicka <jh@suse.cz>
|
||||
|
||||
* bulitins.c (expand_builtin): Do not early exit for gcov
|
||||
|
@ -178,10 +178,11 @@ extern GTY(()) int darwin_ms_struct;
|
||||
%{L*} %(link_libgcc) %o %{fprofile-arcs|fprofile-generate*|coverage:-lgcov} \
|
||||
%{fopenmp|ftree-parallelize-loops=*: \
|
||||
%{static|static-libgcc|static-libstdc++|static-libgfortran: libgomp.a%s; : -lgomp } } \
|
||||
%{%:sanitize(address): -lasan } \
|
||||
%{fgnu-tm: \
|
||||
%{static|static-libgcc|static-libstdc++|static-libgfortran: libitm.a%s; : -litm } } \
|
||||
%{!nostdlib:%{!nodefaultlibs:\
|
||||
%{%:sanitize(address): -lasan } \
|
||||
%{%:sanitize(undefined): -lubsan } \
|
||||
%(link_ssp) %(link_gcc_c_sequence)\
|
||||
}}\
|
||||
%{!nostdlib:%{!nostartfiles:%E}} %{T*} %{F*} }}}}}}}"
|
||||
|
@ -1,3 +1,9 @@
|
||||
2013-09-01 Iain Sandoe <iain@codesourcery.com>
|
||||
|
||||
* ubsan/Makefile.am (libubsan_la_LIBADD): Revise to omit
|
||||
libinterception.la for Darwin.
|
||||
* ubsan/Makefile.in: Regenerate.
|
||||
|
||||
2013-08-30 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* Makefile.am (SUBDIRS): Add ubsan.
|
||||
|
@ -18,7 +18,11 @@ ubsan_files = \
|
||||
ubsan_value.cc
|
||||
|
||||
libubsan_la_SOURCES = $(ubsan_files)
|
||||
libubsan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la $(top_builddir)/interception/libinterception.la $(LIBSTDCXX_RAW_CXX_LDFLAGS)
|
||||
libubsan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la
|
||||
if !USING_MAC_INTERPOSE
|
||||
libubsan_la_LIBADD += $(top_builddir)/interception/libinterception.la
|
||||
endif
|
||||
libubsan_la_LIBADD += $(LIBSTDCXX_RAW_CXX_LDFLAGS)
|
||||
libubsan_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` -lpthread -ldl
|
||||
|
||||
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
||||
|
@ -35,6 +35,7 @@ POST_UNINSTALL = :
|
||||
build_triplet = @build@
|
||||
host_triplet = @host@
|
||||
target_triplet = @target@
|
||||
@USING_MAC_INTERPOSE_FALSE@am__append_1 = $(top_builddir)/interception/libinterception.la
|
||||
subdir = ubsan
|
||||
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
@ -79,8 +80,7 @@ LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
|
||||
am__DEPENDENCIES_1 =
|
||||
libubsan_la_DEPENDENCIES = \
|
||||
$(top_builddir)/sanitizer_common/libsanitizer_common.la \
|
||||
$(top_builddir)/interception/libinterception.la \
|
||||
$(am__DEPENDENCIES_1)
|
||||
$(am__append_1) $(am__DEPENDENCIES_1)
|
||||
am__objects_1 = ubsan_diag.lo ubsan_handlers.lo ubsan_handlers_cxx.lo \
|
||||
ubsan_type_hash.lo ubsan_value.lo
|
||||
am_libubsan_la_OBJECTS = $(am__objects_1)
|
||||
@ -253,7 +253,9 @@ ubsan_files = \
|
||||
ubsan_value.cc
|
||||
|
||||
libubsan_la_SOURCES = $(ubsan_files)
|
||||
libubsan_la_LIBADD = $(top_builddir)/sanitizer_common/libsanitizer_common.la $(top_builddir)/interception/libinterception.la $(LIBSTDCXX_RAW_CXX_LDFLAGS)
|
||||
libubsan_la_LIBADD = \
|
||||
$(top_builddir)/sanitizer_common/libsanitizer_common.la \
|
||||
$(am__append_1) $(LIBSTDCXX_RAW_CXX_LDFLAGS)
|
||||
libubsan_la_LDFLAGS = -version-info `grep -v '^\#' $(srcdir)/libtool-version` -lpthread -ldl
|
||||
|
||||
# Work around what appears to be a GNU make bug handling MAKEFLAGS
|
||||
|
Loading…
Reference in New Issue
Block a user