[Gmp-commit] /var/hg/gmp: 2 new changesets

mercurial at gmplib.org mercurial at gmplib.org
Mon Nov 24 17:47:02 UTC 2014


details:   /var/hg/gmp/rev/1c07b95f3389
changeset: 16523:1c07b95f3389
user:      Torbjorn Granlund <torbjorng at google.com>
date:      Mon Nov 24 18:46:29 2014 +0100
description:
Provide ABI synonyms (for clang pretending to be gcc).

details:   /var/hg/gmp/rev/eb61a43991fd
changeset: 16524:eb61a43991fd
user:      Torbjorn Granlund <torbjorng at google.com>
date:      Mon Nov 24 18:46:37 2014 +0100
description:
ChangeLog

diffstat:

 ChangeLog    |   5 +++++
 configure.ac |  10 +++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diffs (44 lines):

diff -r f080f8d4aecd -r eb61a43991fd ChangeLog
--- a/ChangeLog	Tue Nov 18 18:03:17 2014 +0100
+++ b/ChangeLog	Mon Nov 24 18:46:37 2014 +0100
@@ -1,3 +1,8 @@
+2014-11-24  Torbjörn Granlund  <torbjorng at google.com>
+
+	* configure.ac (mips*-*-*): Provide ABI synonyms (for clang pretending
+	to be gcc).
+
 2014-11-18  Torbjörn Granlund  <torbjorng at google.com>
 
 	From Hannes Mehnert:
diff -r f080f8d4aecd -r eb61a43991fd configure.ac
--- a/configure.ac	Tue Nov 18 18:03:17 2014 +0100
+++ b/configure.ac	Mon Nov 24 18:46:37 2014 +0100
@@ -909,7 +909,7 @@
   mips*-*-*)
     abilist="o32"
     gcc_cflags_optlist="abi"
-    gcc_cflags_abi="-mabi=32"
+    gcc_cflags_abi="-mabi=32 -m32"
     gcc_testlist="gcc-mips-o32"
     path="mips32"
     cc_cflags="-O2 -o32"   # no -g, it disables all optimizations
@@ -921,13 +921,17 @@
         abilist="n32 64 o32"
 
         cclist_n32="gcc cc"
-        gcc_n32_cflags="$gcc_cflags -mabi=n32"
+        gcc_n32_cflags_optlist="abi"
+        gcc_n32_cflags="$gcc_cflags"
+        gcc_n32_cflags_abi="-mabi=n32 -mn32"
         cc_n32_cflags="-O2 -n32"	# no -g, it disables all optimizations
         limb_n32=longlong
         path_n32="mips64"
 
         cclist_64="gcc cc"
-        gcc_64_cflags="$gcc_cflags -mabi=64"
+        gcc_64_cflags_optlist="abi"
+        gcc_64_cflags="$gcc_cflags"
+        gcc_64_cflags_abi="-mabi=64 -m64"
         gcc_64_ldflags="-Wc,-mabi=64"
         cc_64_cflags="-O2 -64"		# no -g, it disables all optimizations
         cc_64_ldflags="-Wc,-64"


More information about the gmp-commit mailing list