[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1306-g97755b4
Brad King
brad.king at kitware.com
Fri Dec 21 08:35:06 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 97755b45a1f2103d7c14103faa28e04231edad2b (commit)
via 2ce327892f098614a2830886b6a94c92f1a4f54b (commit)
via 349165223d26f0ffc5ad004b4a05a8a92121ac20 (commit)
via 0d3b89ed7634598ef446da6b279f79b8bce20dd2 (commit)
via e1d211abba91b37907e71b4de1fffb59ebe3c05d (commit)
from ec150ff620d5cfc11b2da8eb3ae0b28da915b58f (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=97755b45a1f2103d7c14103faa28e04231edad2b
commit 97755b45a1f2103d7c14103faa28e04231edad2b
Merge: ec150ff 2ce3278
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Dec 21 08:35:04 2012 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Dec 21 08:35:04 2012 -0500
Merge topic 'update-KWIML' into next
2ce3278 Merge branch 'upstream-kwiml' into update-KWIML
3491652 KWIML: Teach ABI.h about Aarch64
0d3b89e CMake Nightly Date Stamp
e1d211a CMake Nightly Date Stamp
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=2ce327892f098614a2830886b6a94c92f1a4f54b
commit 2ce327892f098614a2830886b6a94c92f1a4f54b
Merge: 0d3b89e 3491652
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri Dec 21 08:32:56 2012 -0500
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Dec 21 08:32:56 2012 -0500
Merge branch 'upstream-kwiml' into update-KWIML
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=349165223d26f0ffc5ad004b4a05a8a92121ac20
commit 349165223d26f0ffc5ad004b4a05a8a92121ac20
Author: Riku Voipio <riku.voipio at linaro.org>
AuthorDate: Fri Dec 21 13:20:02 2012 +0200
Commit: Brad King <brad.king at kitware.com>
CommitDate: Fri Dec 21 08:27:29 2012 -0500
KWIML: Teach ABI.h about Aarch64
The __aarch64__ defines Aarch64, while __AARCH64EB__ defines bigendian
and __AARCH64EL__ little endian. Only little endian tested, no big
endian toolchain exists yet.
Signed-off-by: Riku Voipio <riku.voipio at linaro.org>
diff --git a/ABI.h.in b/ABI.h.in
index f93ddba..7f4772a 100644
--- a/ABI.h.in
+++ b/ABI.h.in
@@ -418,6 +418,14 @@ suppression macro @KWIML at _ABI_NO_VERIFY was defined.
#elif defined(__vax__)
# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
+/* Aarch64 */
+#elif defined(__aarch64__)
+# if !defined(__AARCH64EB__)
+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_LITTLE
+# else
+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
+# endif
+
/* Unknown CPU */
#elif !defined(@KWIML at _ABI_NO_ERROR_ENDIAN)
# error "Byte order of target CPU unknown."
-----------------------------------------------------------------------
Summary of changes:
Source/CMakeVersion.cmake | 2 +-
Utilities/KWIML/ABI.h.in | 8 ++++++++
2 files changed, 9 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list