From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2138) id 315793861887; Mon, 18 Jan 2021 14:15:37 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 315793861887 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Andreas Schwab To: gcc-cvs@gcc.gnu.org Subject: [gcc r11-6769] libgomp: enable linux-futex on riscv64 X-Act-Checkin: gcc X-Git-Author: Andreas Schwab X-Git-Refname: refs/heads/master X-Git-Oldrev: acdc49fabf059a364b90a8f8bedb004c799cd353 X-Git-Newrev: b8c3f5196e1e439ac83f81dd245eb4028b19d531 Message-Id: <20210118141537.315793861887@sourceware.org> Date: Mon, 18 Jan 2021 14:15:37 +0000 (GMT) X-BeenThere: gcc-cvs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jan 2021 14:15:37 -0000 https://gcc.gnu.org/g:b8c3f5196e1e439ac83f81dd245eb4028b19d531 commit r11-6769-gb8c3f5196e1e439ac83f81dd245eb4028b19d531 Author: Andreas Schwab Date: Sun Jan 17 17:19:46 2021 +0100 libgomp: enable linux-futex on riscv64 Regtested on riscv64-suse-linux. libgomp/ * configure.tgt (riscv64*-*-linux*): Add linux to config_path. Diff: --- libgomp/configure.tgt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libgomp/configure.tgt b/libgomp/configure.tgt index be06be0e52b..fe2bf1dac51 100644 --- a/libgomp/configure.tgt +++ b/libgomp/configure.tgt @@ -64,6 +64,10 @@ if test x$enable_linux_futex = xyes; then config_path="linux/powerpc linux posix" ;; + riscv64*-*-linux*) + config_path="linux posix" + ;; + s390*-*-linux*) config_path="linux/s390 linux posix" ;;