From 752361c980da04bd5a386d09af4388dac993c9b7 Mon Sep 17 00:00:00 2001 From: Hans-Peter Nilsson Date: Thu, 26 Apr 2018 01:16:47 +0000 Subject: [PATCH] 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 : Enable build, excluding mips*64*-*-linux*. From-SVN: r259665 --- libsanitizer/ChangeLog | 3 +++ libsanitizer/configure.tgt | 8 +++++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 141291f9e837..2ec1a9a14996 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,5 +1,8 @@ 2018-04-26 Hans-Peter Nilsson + * configure.tgt : Enable build, excluding + mips*64*-*-linux*. + * sanitizer_common/sanitizer_platform_limits_linux.cc: Do not take the shortcut to #include for MIPS instead of the kernel . Explain why sys/stat.h is misleading diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt index 573e3b482e9e..1dce1e6dc273 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 -- 2.39.2