mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-10 02:44:31 +08:00
re PR sanitizer/64839 (libsanitizer shouldn't require <rpc/xdr.h>)
2015-04-13 Yury Gribov <y.gribov@samsung.com> PR sanitizer/64839 libsanitizer/ * sanitizer_common/sanitizer_platform.h: Cherry pick upstream r234470. * sanitizer_common/sanitizer_platform_limits_posix.cc: Ditto. * configure.ac (RPC_DEFS): Check for precense of RPC headers. * sanitizer_common/Makefile.am (DEFS): Pass info to compiler. * Makefile.in: Regenerate. * asan/Makefile.in: Regenerate. * config.h.in: Regenerate. * configure: Regenerate. * interception/Makefile.in: Regenerate. * libbacktrace/Makefile.in: Regenerate. * lsan/Makefile.in: Regenerate. * sanitizer_common/Makefile.in: Regenerate. * tsan/Makefile.in: Regenerate. * ubsan/Makefile.in: Regenerate. From-SVN: r222043
This commit is contained in:
parent
49bd12939f
commit
d041a6fcae
@ -1,3 +1,23 @@
|
||||
2015-04-13 Yury Gribov <y.gribov@samsung.com>
|
||||
|
||||
PR sanitizer/64839
|
||||
* sanitizer_common/sanitizer_platform.h: Cherry pick
|
||||
upstream r234470.
|
||||
* sanitizer_common/sanitizer_platform_limits_posix.cc: Ditto.
|
||||
* configure.ac (RPC_DEFS): Check for precense of RPC headers.
|
||||
* sanitizer_common/Makefile.am (DEFS): Pass info to compiler.
|
||||
* Makefile.in: Regenerate.
|
||||
* asan/Makefile.in: Regenerate.
|
||||
* config.h.in: Regenerate.
|
||||
* configure: Regenerate.
|
||||
* interception/Makefile.in: Regenerate.
|
||||
* libbacktrace/Makefile.in: Regenerate.
|
||||
* lsan/Makefile.in: Regenerate.
|
||||
* sanitizer_common/Makefile.in: Regenerate.
|
||||
* tsan/Makefile.in: Regenerate.
|
||||
* ubsan/Makefile.in: Regenerate.
|
||||
|
||||
|
||||
2015-03-23 Christophe Lyon <christophe.lyon@linaro.org>
|
||||
|
||||
PR sanitizer/59009
|
||||
|
@ -181,6 +181,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -190,6 +190,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -43,6 +43,9 @@
|
||||
/* Define to 1 if you have the <memory.h> header file. */
|
||||
#undef HAVE_MEMORY_H
|
||||
|
||||
/* Define to 1 if you have the <rpc/xdr.h> header file. */
|
||||
#undef HAVE_RPC_XDR_H
|
||||
|
||||
/* Define to 1 if you have the <stdint.h> header file. */
|
||||
#undef HAVE_STDINT_H
|
||||
|
||||
@ -67,6 +70,9 @@
|
||||
/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
#undef HAVE_SYS_TYPES_H
|
||||
|
||||
/* Define to 1 if you have the <tirpc/rpc/xdr.h> header file. */
|
||||
#undef HAVE_TIRPC_RPC_XDR_H
|
||||
|
||||
/* Define to 1 if you have the <unistd.h> header file. */
|
||||
#undef HAVE_UNISTD_H
|
||||
|
||||
|
46
libsanitizer/configure
vendored
46
libsanitizer/configure
vendored
@ -607,6 +607,7 @@ LIBOBJS
|
||||
TSAN_TARGET_DEPENDENT_OBJECTS
|
||||
LIBBACKTRACE_SUPPORTED_FALSE
|
||||
LIBBACKTRACE_SUPPORTED_TRUE
|
||||
RPC_DEFS
|
||||
BACKTRACE_SUPPORTS_THREADS
|
||||
BACKTRACE_USES_MALLOC
|
||||
ALLOC_FILE
|
||||
@ -12021,7 +12022,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12024 "configure"
|
||||
#line 12025 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -12127,7 +12128,7 @@ else
|
||||
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
||||
lt_status=$lt_dlunknown
|
||||
cat > conftest.$ac_ext <<_LT_EOF
|
||||
#line 12130 "configure"
|
||||
#line 12131 "configure"
|
||||
#include "confdefs.h"
|
||||
|
||||
#if HAVE_DLFCN_H
|
||||
@ -16341,6 +16342,47 @@ $as_echo "#define HAVE_GETEXECNAME 1" >>confdefs.h
|
||||
|
||||
fi
|
||||
|
||||
# Check for rpc/xdr.h
|
||||
for ac_header in rpc/xdr.h
|
||||
do :
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "rpc/xdr.h" "ac_cv_header_rpc_xdr_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_rpc_xdr_h" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_RPC_XDR_H 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
if test x"$ac_cv_header_rpc_xdr_h" = xyes; then
|
||||
rpc_defs="$rpc_defs -DHAVE_RPC_XDR_H=1"
|
||||
else
|
||||
rpc_defs="$rpc_defs -DHAVE_RPC_XDR_H=0"
|
||||
fi
|
||||
|
||||
# Check for tirpc/rpc/xdr.h
|
||||
for ac_header in tirpc/rpc/xdr.h
|
||||
do :
|
||||
ac_fn_c_check_header_mongrel "$LINENO" "tirpc/rpc/xdr.h" "ac_cv_header_tirpc_rpc_xdr_h" "$ac_includes_default"
|
||||
if test "x$ac_cv_header_tirpc_rpc_xdr_h" = x""yes; then :
|
||||
cat >>confdefs.h <<_ACEOF
|
||||
#define HAVE_TIRPC_RPC_XDR_H 1
|
||||
_ACEOF
|
||||
|
||||
fi
|
||||
|
||||
done
|
||||
|
||||
if test x"$ac_cv_header_tirpc_rpc_xdr_h" = xyes; then
|
||||
rpc_defs="$rpc_defs -DHAVE_TIRPC_RPC_XDR_H=1"
|
||||
else
|
||||
rpc_defs="$rpc_defs -DHAVE_TIRPC_RPC_XDR_H=0"
|
||||
fi
|
||||
|
||||
RPC_DEFS=$rpc_defs
|
||||
|
||||
|
||||
if test "x${BACKTRACE_SUPPORTED}x${BACKTRACE_USES_MALLOC}" = "x1x0"; then
|
||||
LIBBACKTRACE_SUPPORTED_TRUE=
|
||||
LIBBACKTRACE_SUPPORTED_FALSE='#'
|
||||
|
@ -312,6 +312,24 @@ if test "$have_getexecname" = "yes"; then
|
||||
AC_DEFINE(HAVE_GETEXECNAME, 1, [Define if getexecname is available.])
|
||||
fi
|
||||
|
||||
# Check for rpc/xdr.h
|
||||
AC_CHECK_HEADERS(rpc/xdr.h)
|
||||
if test x"$ac_cv_header_rpc_xdr_h" = xyes; then
|
||||
rpc_defs="$rpc_defs -DHAVE_RPC_XDR_H=1"
|
||||
else
|
||||
rpc_defs="$rpc_defs -DHAVE_RPC_XDR_H=0"
|
||||
fi
|
||||
|
||||
# Check for tirpc/rpc/xdr.h
|
||||
AC_CHECK_HEADERS(tirpc/rpc/xdr.h)
|
||||
if test x"$ac_cv_header_tirpc_rpc_xdr_h" = xyes; then
|
||||
rpc_defs="$rpc_defs -DHAVE_TIRPC_RPC_XDR_H=1"
|
||||
else
|
||||
rpc_defs="$rpc_defs -DHAVE_TIRPC_RPC_XDR_H=0"
|
||||
fi
|
||||
|
||||
AC_SUBST([RPC_DEFS], [$rpc_defs])
|
||||
|
||||
AM_CONDITIONAL(LIBBACKTRACE_SUPPORTED,
|
||||
[test "x${BACKTRACE_SUPPORTED}x${BACKTRACE_USES_MALLOC}" = "x1x0"])
|
||||
|
||||
|
@ -146,6 +146,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -188,6 +188,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -181,6 +181,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -3,7 +3,7 @@ AM_CPPFLAGS = -I $(top_srcdir)/include -isystem $(top_srcdir)/include/system
|
||||
# May be used by toolexeclibdir.
|
||||
gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
|
||||
|
||||
DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
|
||||
DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS @RPC_DEFS@
|
||||
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
|
||||
AM_CXXFLAGS += $(LIBSTDCXX_RAW_CXX_CXXFLAGS)
|
||||
AM_CXXFLAGS += -std=gnu++11
|
||||
|
@ -129,7 +129,7 @@ CXXCPP = @CXXCPP@
|
||||
CXXDEPMODE = @CXXDEPMODE@
|
||||
CXXFLAGS = @CXXFLAGS@
|
||||
CYGPATH_W = @CYGPATH_W@
|
||||
DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS
|
||||
DEFS = -D_GNU_SOURCE -D_DEBUG -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS @RPC_DEFS@
|
||||
DEPDIR = @DEPDIR@
|
||||
DSYMUTIL = @DSYMUTIL@
|
||||
DUMPBIN = @DUMPBIN@
|
||||
@ -174,6 +174,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -126,4 +126,10 @@
|
||||
# define SANITIZER_POINTER_FORMAT_LENGTH FIRST_32_SECOND_64(8, 12)
|
||||
#endif
|
||||
|
||||
// Assume obsolete RPC headers are available by default
|
||||
#if !defined(HAVE_RPC_XDR_H) && !defined(HAVE_TIRPC_RPC_XDR_H)
|
||||
# define HAVE_RPC_XDR_H (SANITIZER_LINUX && !SANITIZER_ANDROID)
|
||||
# define HAVE_TIRPC_RPC_XDR_H 0
|
||||
#endif
|
||||
|
||||
#endif // SANITIZER_PLATFORM_H
|
||||
|
@ -131,7 +131,11 @@
|
||||
#include <netax25/ax25.h>
|
||||
#include <netipx/ipx.h>
|
||||
#include <netrom/netrom.h>
|
||||
#include <rpc/xdr.h>
|
||||
#if HAVE_RPC_XDR_H
|
||||
# include <rpc/xdr.h>
|
||||
#elif HAVE_TIRPC_RPC_XDR_H
|
||||
# include <tirpc/rpc/xdr.h>
|
||||
#endif
|
||||
#include <scsi/scsi.h>
|
||||
#include <sys/mtio.h>
|
||||
#include <sys/kd.h>
|
||||
@ -1147,7 +1151,7 @@ CHECK_SIZE_AND_OFFSET(group, gr_passwd);
|
||||
CHECK_SIZE_AND_OFFSET(group, gr_gid);
|
||||
CHECK_SIZE_AND_OFFSET(group, gr_mem);
|
||||
|
||||
#if SANITIZER_LINUX && !SANITIZER_ANDROID
|
||||
#if HAVE_RPC_XDR_H || HAVE_TIRPC_RPC_XDR_H
|
||||
CHECK_TYPE_SIZE(XDR);
|
||||
CHECK_SIZE_AND_OFFSET(XDR, x_op);
|
||||
CHECK_SIZE_AND_OFFSET(XDR, x_ops);
|
||||
|
@ -194,6 +194,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
@ -177,6 +177,7 @@ PACKAGE_URL = @PACKAGE_URL@
|
||||
PACKAGE_VERSION = @PACKAGE_VERSION@
|
||||
PATH_SEPARATOR = @PATH_SEPARATOR@
|
||||
RANLIB = @RANLIB@
|
||||
RPC_DEFS = @RPC_DEFS@
|
||||
SED = @SED@
|
||||
SET_MAKE = @SET_MAKE@
|
||||
SHELL = @SHELL@
|
||||
|
Loading…
Reference in New Issue
Block a user