changeset 202:e200cb46ab23

Recognize __ia64__ for IA64 builds.
author David A. Holland
date Thu, 15 Dec 2016 23:53:13 -0500
parents cc6ad214664a
children 3a25180d3a5c
files CHANGES config.h
diffstat 2 files changed, 5 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/CHANGES	Sun Sep 04 17:16:47 2016 -0400
+++ b/CHANGES	Thu Dec 15 23:53:13 2016 -0500
@@ -1,3 +1,6 @@
+release [pending]
+   - Recognize __ia64__ for IA64 builds.
+
 release 0.5.2 (20160904)
    - Fix typo in -U usage message, noticed by Joerg.
    - Add a -debuglog option to send an execution trace to a file.
--- a/config.h	Sun Sep 04 17:16:47 2016 -0400
+++ b/config.h	Thu Dec 15 23:53:13 2016 -0500
@@ -124,6 +124,8 @@
 #define CONFIG_CPU "__ppc64__"
 #elif defined(__ARM__)
 #define CONFIG_CPU "__ARM__"
+#elif defined(__ia64__)
+#define CONFIG_CPU "__ia64__"
 #else
 /* let it go */
 #endif