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
This commit is contained in:
parent
9f943b2446
commit
752361c980
2 changed files with 10 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue