diff mbox series

[3/4] Enable libsanitizer for 32-bit mips*-*-linux*

Message ID 201803230320.w2N3KM54005806@ignucius.se.axis.com
State New
Headers show
Series None | expand

Commit Message

Hans-Peter Nilsson March 23, 2018, 3:20 a.m. UTC
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.

libsanitizer:

	* configure.tgt <mips*-*-linux*>: Enable build, excluding
	mips*64*-*-linux*.
diff mbox series

Patch

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