[Gmp-commit] /var/hg/gmp: 2 new changesets
mercurial at gmplib.org
mercurial at gmplib.org
Sun Jun 16 22:11:54 UTC 2019
details: /var/hg/gmp/rev/ae4cf61adca9
changeset: 17774:ae4cf61adca9
user: Torbjorn Granlund <tg at gmplib.org>
date: Mon Jun 17 00:11:37 2019 +0200
description:
* config.guess: Work around upstream configfsf.guess's regression wrt
mips vs mips64.
details: /var/hg/gmp/rev/3300fbb5d615
changeset: 17775:3300fbb5d615
user: Torbjorn Granlund <tg at gmplib.org>
date: Mon Jun 17 00:11:50 2019 +0200
description:
diffstat:
ChangeLog | 5 +++++
config.guess | 15 +++++++++++++--
2 files changed, 18 insertions(+), 2 deletions(-)
diffs (44 lines):
diff -r 365d54d800c9 -r 3300fbb5d615 ChangeLog
--- a/ChangeLog Fri Jun 14 00:19:26 2019 +0200
+++ b/ChangeLog Mon Jun 17 00:11:50 2019 +0200
@@ -1,3 +1,8 @@
+2019-06-17 Torbjörn Granlund <tg at gmplib.org>
+
+ * config.guess: Work around upstream configfsf.guess's regression wrt
+ mips vs mips64.
+
2019-06-14 Torbjörn Granlund <tg at gmplib.org>
* longlong.h (mips64): Provide r6 asm code as default expression yields
diff -r 365d54d800c9 -r 3300fbb5d615 config.guess
--- a/config.guess Fri Jun 14 00:19:26 2019 +0200
+++ b/config.guess Mon Jun 17 00:11:50 2019 +0200
@@ -3,8 +3,7 @@
# GMP config.guess wrapper.
-# Copyright 2000-2006, 2008, 2011-2016, 2018, 2019 Free Software Foundation,
-# Inc.
+# Copyright 2000-2019 Free Software Foundation, Inc.
#
# This file is part of the GNU MP Library.
#
@@ -281,6 +280,18 @@
exact_cpu=mips64
;;
+mips-*-*)
+ case $(uname -m) in
+ mips64) exact_cpu=mips64;;
+ esac
+ ;;
+
+mipsel-*-*)
+ case $(uname -m) in
+ mips64) exact_cpu=mips64el;;
+ esac
+ ;;
+
m68k-*-*)
eval $set_cc_for_build
# NetBSD (and presumably other *BSD) "sysctl hw.model" gives for example
More information about the gmp-commit
mailing list