From bdcf6603c2b1f403212209df05c651a177625b6c Mon Sep 17 00:00:00 2001 From: lichao Date: Wed, 12 Oct 2022 13:23:06 +0800 Subject: [PATCH] support for loongarch in config.guess --- src/jemalloc/config.guess | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/jemalloc/config.guess b/src/jemalloc/config.guess index b79252d..8b487b1 100755 --- a/src/jemalloc/config.guess +++ b/src/jemalloc/config.guess @@ -950,6 +950,9 @@ EOF m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; + loongarch*:Linux:*:*) + echo ${UNAME_MACHINE}-unknown-linux-gnu + exit;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c -- 2.31.1