comparison config.h @ 202:e200cb46ab23

Recognize __ia64__ for IA64 builds.
author David A. Holland
date Thu, 15 Dec 2016 23:53:13 -0500
parents 9b859d40640a
children dd0d2bfe4962
comparison
equal deleted inserted replaced
201:cc6ad214664a 202:e200cb46ab23
122 #define CONFIG_CPU "__PPC64__" 122 #define CONFIG_CPU "__PPC64__"
123 #elif defined(__ppc64__) 123 #elif defined(__ppc64__)
124 #define CONFIG_CPU "__ppc64__" 124 #define CONFIG_CPU "__ppc64__"
125 #elif defined(__ARM__) 125 #elif defined(__ARM__)
126 #define CONFIG_CPU "__ARM__" 126 #define CONFIG_CPU "__ARM__"
127 #elif defined(__ia64__)
128 #define CONFIG_CPU "__ia64__"
127 #else 129 #else
128 /* let it go */ 130 /* let it go */
129 #endif 131 #endif
130 #endif 132 #endif
131 133