[Cmake-commits] CMake branch, next, updated. v3.2.2-2703-g8344983

Brad King brad.king at kitware.com
Wed May 13 08:33:58 EDT 2015


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  83449832ed0c7c52987d734abc55ddbcb5ede991 (commit)
       via  c9709dffb0856c140f39c5db1525bccc74771c92 (commit)
       via  3b815ed283eb8d59c4e46dd89aa1e17c9f4deee6 (commit)
       via  a6a9710fca291a96d01d848bd1aee8233beacf6b (commit)
      from  13e86829073482237617637c644b073a6f3300c5 (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=83449832ed0c7c52987d734abc55ddbcb5ede991
commit 83449832ed0c7c52987d734abc55ddbcb5ede991
Merge: 13e8682 c9709df
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed May 13 08:33:57 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed May 13 08:33:57 2015 -0400

    Merge topic 'update-kwsys' into next
    
    c9709dff Merge branch 'upstream-kwsys' into update-kwsys
    3b815ed2 KWSys 2015-05-12 (b1d560a0)
    a6a9710f CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=c9709dffb0856c140f39c5db1525bccc74771c92
commit c9709dffb0856c140f39c5db1525bccc74771c92
Merge: a6a9710 3b815ed
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Wed May 13 08:29:21 2015 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed May 13 08:29:21 2015 -0400

    Merge branch 'upstream-kwsys' into update-kwsys


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3b815ed283eb8d59c4e46dd89aa1e17c9f4deee6
commit 3b815ed283eb8d59c4e46dd89aa1e17c9f4deee6
Author:     KWSys Robot <kwrobot at kitware.com>
AuthorDate: Tue May 12 11:38:02 2015 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Wed May 13 08:28:08 2015 -0400

    KWSys 2015-05-12 (b1d560a0)
    
    Extract upstream KWSys using the following shell commands.
    
    $ git archive --prefix=upstream-kwsys/ b1d560a0 | tar x
    $ git shortlog --no-merges --abbrev=8 --format='%h %s' 34fceb50..b1d560a0
    Brad King (1):
          b1d560a0 CPU: MIPS is biendian

diff --git a/CPU.h.in b/CPU.h.in
index 626914b..884d71a 100644
--- a/CPU.h.in
+++ b/CPU.h.in
@@ -76,7 +76,15 @@
 #elif defined(__m68k__) || defined(M68000)
 # define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_BIG
 
-/* MIPS */
+/* MIPSel (MIPS little endian) */
+#elif defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL)
+# define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_LITTLE
+
+/* MIPSeb (MIPS big endian) */
+#elif defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB)
+# define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_BIG
+
+/* MIPS (fallback, big endian) */
 #elif defined(__mips) || defined(__mips__) || defined(__MIPS__)
 # define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_BIG
 

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

Summary of changes:
 Source/CMakeVersion.cmake |    2 +-
 Source/kwsys/CPU.h.in     |   10 +++++++++-
 2 files changed, 10 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list