diff options
author | Hans-Peter Nilsson <hp@axis.com> | 2018-04-26 01:16:47 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2018-04-26 01:16:47 +0000 |
commit | 752361c980da04bd5a386d09af4388dac993c9b7 (patch) | |
tree | f7cb94f11e3c0c5b52f7ff36d2353db54ebba09a | |
parent | 9f943b2446f2d0a345bbf9b4be3d3a4316372270 (diff) | |
download | gcc-752361c980da04bd5a386d09af4388dac993c9b7.zip gcc-752361c980da04bd5a386d09af4388dac993c9b7.tar.gz gcc-752361c980da04bd5a386d09af4388dac993c9b7.tar.bz2 |
If someone has access to a 64-bit mips-linux system to test this (with the obvious edit), that'd be really nice.
If someone has access to a 64-bit mips-linux system to test
this (with the obvious edit), that'd be really nice. Until
then, best to not introduce possible build failures.
* configure.tgt <mips*-*-linux*>: Enable build, excluding
mips*64*-*-linux*.
From-SVN: r259665
-rw-r--r-- | libsanitizer/ChangeLog | 3 | ||||
-rw-r--r-- | libsanitizer/configure.tgt | 8 |
2 files changed, 10 insertions, 1 deletions
diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 141291f..2ec1a9a 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,5 +1,8 @@ 2018-04-26 Hans-Peter Nilsson <hp@axis.com> + * configure.tgt <mips*-*-linux*>: Enable build, excluding + mips*64*-*-linux*. + * sanitizer_common/sanitizer_platform_limits_linux.cc: Do not take the shortcut to #include <sys/stat.h> for MIPS instead of the kernel <asm/stat.h>. Explain why sys/stat.h is misleading diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt index 573e3b4..1dce1e6 100644 --- a/libsanitizer/configure.tgt +++ b/libsanitizer/configure.tgt @@ -1,5 +1,5 @@ # -*- shell-script -*- -# Copyright (C) 2012-2017 Free Software Foundation, Inc. +# Copyright (C) 2012-2018 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -45,6 +45,12 @@ case "${target}" in ;; arm*-*-linux*) ;; + mips*64*-*-linux*) + # This clause is only here to not match the supported mips*-*-linux*. + UNSUPPORTED=1 + ;; + mips*-*-linux*) + ;; aarch64*-*-linux*) if test x$ac_cv_sizeof_void_p = x8; then TSAN_SUPPORTED=yes |