[Cmake-commits] CMake branch, next, updated. v3.4.0-1583-g7fe51ef
Brad King
brad.king at kitware.com
Wed Dec 2 08:41:39 EST 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 7fe51ef21ecd8c7d1ef18dde26ebe3aef688c55e (commit)
via f2ca704cbb0722da8f43b1f99b07e6fac32dc0f6 (commit)
from 723ae591165ac8f1124f5015b6e76ddba8003887 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=7fe51ef21ecd8c7d1ef18dde26ebe3aef688c55e
commit 7fe51ef21ecd8c7d1ef18dde26ebe3aef688c55e
Merge: 723ae59 f2ca704
Author: Brad King <brad.king at kitware.com>
AuthorDate: Wed Dec 2 08:41:38 2015 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Dec 2 08:41:38 2015 -0500
Merge topic 'backport-NIOS2-CPU' into next
f2ca704c Add NIOS2 CPU support
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f2ca704cbb0722da8f43b1f99b07e6fac32dc0f6
commit f2ca704cbb0722da8f43b1f99b07e6fac32dc0f6
Author: Marek Vasut <marex at denx.de>
AuthorDate: Thu Nov 26 21:48:00 2015 +0100
Commit: Brad King <brad.king at kitware.com>
CommitDate: Wed Dec 2 08:40:36 2015 -0500
Add NIOS2 CPU support
Add necessary bits to support the NIOS2 little-endian CPU.
Signed-off-by: Marek Vasut <marex at denx.de>
Cc: Ley Foon Tan <lftan at altera.com>
Cc: Thomas Chou <thomas at wytron.com.tw>
Cc: Walter Goossens <waltergoossens at home.nl>
diff --git a/Source/kwsys/CPU.h.in b/Source/kwsys/CPU.h.in
index 884d71a..66ffbb1 100644
--- a/Source/kwsys/CPU.h.in
+++ b/Source/kwsys/CPU.h.in
@@ -88,6 +88,10 @@
#elif defined(__mips) || defined(__mips__) || defined(__MIPS__)
# define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_BIG
+/* NIOS2 */
+#elif defined(__NIOS2__) || defined(__NIOS2) || defined(__nios2__)
+# define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_LITTLE
+
/* OpenRISC 1000 */
#elif defined(__or1k__)
# define @KWSYS_NAMESPACE at _CPU_ENDIAN_ID @KWSYS_NAMESPACE at _CPU_ENDIAN_ID_BIG
diff --git a/Utilities/KWIML/ABI.h.in b/Utilities/KWIML/ABI.h.in
index 6300ada..87b6e96 100644
--- a/Utilities/KWIML/ABI.h.in
+++ b/Utilities/KWIML/ABI.h.in
@@ -398,6 +398,10 @@ suppression macro @KWIML at _ABI_NO_VERIFY was defined.
#elif defined(__mips) || defined(__mips__) || defined(__MIPS__)
# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
+/* NIOS2 */
+#elif defined(__NIOS2__) || defined(__NIOS2) || defined(__nios2__)
+# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_LITTLE
+
/* OpenRISC 1000 */
#elif defined(__or1k__)
# define @KWIML at _ABI_ENDIAN_ID @KWIML at _ABI_ENDIAN_ID_BIG
-----------------------------------------------------------------------
Summary of changes:
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list