From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 7856) id D1A513857B86; Wed, 31 Aug 2022 06:34:30 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org D1A513857B86 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1661927670; bh=b2HQFpnhsUOp3+VSalwWNyFZQqiZneHHR0DSTnEdP5c=; h=From:To:Subject:Date:From; b=rJA/G/msrBUfhueH1qRFgqoMGftQxSd657RREeGlEhg9Nv4DC9z+8QMSZ5aGHvSk6 bmM+XpNnUSU//KTs+rEQFXR/FVzTWR3PW9PElvC0rT0V0e0H7mE0QUr3lJcRN44F6V K4KhSKL8RnQfL86mMNn53cw5SnHA+3yvVLp+1Hqs= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Xi Ruoyao To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-2296] libsanitizer: enable libubsan and libasan for loongarch64-*-linux* X-Act-Checkin: gcc X-Git-Author: Xi Ruoyao X-Git-Refname: refs/heads/master X-Git-Oldrev: 3de9fb3235998a052ba5978bc0fd8ff3fad88810 X-Git-Newrev: a542e4d67306f207845ce2a3036d5360654a6a8c Message-Id: <20220831063430.D1A513857B86@sourceware.org> Date: Wed, 31 Aug 2022 06:34:30 +0000 (GMT) List-Id: https://gcc.gnu.org/g:a542e4d67306f207845ce2a3036d5360654a6a8c commit r13-2296-ga542e4d67306f207845ce2a3036d5360654a6a8c Author: Xi Ruoyao Date: Wed Aug 31 13:46:22 2022 +0800 libsanitizer: enable libubsan and libasan for loongarch64-*-linux* The LoongArch support for libubsan and libasan has been added in: - https://reviews.llvm.org/D129371 - https://reviews.llvm.org/D129418 and we've merged them in r13-2269. It's time to enable them. No unexpected failures in GCC asan.exp and ubsan.exp tests. libsanitizer/ChangeLog: * configure.tgt: Allow loongarch64-*-linux*. Diff: --- libsanitizer/configure.tgt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libsanitizer/configure.tgt b/libsanitizer/configure.tgt index fb89df4935c..87d8a2c3820 100644 --- a/libsanitizer/configure.tgt +++ b/libsanitizer/configure.tgt @@ -72,6 +72,8 @@ case "${target}" in ;; riscv64-*-linux*) ;; + loongarch64-*-linux*) + ;; *) UNSUPPORTED=1 ;;