[Cmake-commits] CMake branch, next, updated. v2.8.7-2743-ge93abd2

Brad King brad.king at kitware.com
Mon Feb 20 09:48:49 EST 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  e93abd26ccbe8a06b8862c94b2fc3e0ba50c2a7d (commit)
       via  4cbc21e8da060ab6d8e8831f817326cae22d69dc (commit)
       via  aabf65a073e812afd9ba417fd56c25017166a43e (commit)
      from  87823e331f54ea5e104bf3a7e57cf9240a1ce8a4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e93abd26ccbe8a06b8862c94b2fc3e0ba50c2a7d
commit e93abd26ccbe8a06b8862c94b2fc3e0ba50c2a7d
Merge: 87823e3 4cbc21e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Feb 20 09:48:38 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Feb 20 09:48:38 2012 -0500

    Merge topic 'update-KWIML' into next
    
    4cbc21e Merge branch 'upstream-kwiml' into update-KWIML
    aabf65a KWIML: Teach ABI.h that MIPS is biendian


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=4cbc21e8da060ab6d8e8831f817326cae22d69dc
commit 4cbc21e8da060ab6d8e8831f817326cae22d69dc
Merge: ec358d1 aabf65a
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Feb 20 09:45:04 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Feb 20 09:45:04 2012 -0500

    Merge branch 'upstream-kwiml' into update-KWIML


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=aabf65a073e812afd9ba417fd56c25017166a43e
commit aabf65a073e812afd9ba417fd56c25017166a43e
Author:     Modestas Vainius <modax at debian.org>
AuthorDate: Mon Feb 20 09:39:03 2012 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Feb 20 09:43:36 2012 -0500

    KWIML: Teach ABI.h that MIPS is biendian
    
    MIPS machines are biendian hence they can run both big endian kernels
    e.g. Debian mips architecture, and little endian kernels e.g. Debian
    mipsel architecture.  Use predefined macros to distinguish them.

diff --git a/ABI.h.in b/ABI.h.in
index e95a4ff..e85a1c5 100644
--- a/ABI.h.in
+++ b/ABI.h.in
@@ -380,7 +380,15 @@ suppression macro @KWIML at _ABI_NO_VERIFY was defined.
 #elif defined(__m68k__) || defined(M68000)
 # define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
 
-/* MIPS */
+/* MIPSel (MIPS little endian) */
+#elif defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL)
+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_LITTLE
+
+/* MIPSeb (MIPS big endian) */
+#elif defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB)
+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
+
+/* MIPS (fallback, big endian) */
 #elif defined(__mips) || defined(__mips__) || defined(__MIPS__)
 # define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
 

-----------------------------------------------------------------------

Summary of changes:
 Utilities/KWIML/ABI.h.in |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list