Hello,
I had some trouble compiling some opens-ource code with the intel C++ compiler (version 13.0.1 20121010, intel64 architecture). The code contained the following directives:
----------
#if defined(UTK__C_Intel) || defined(UTK__C_MSVC)
#if defined(_M_IX86)
#define UTK__Arch_Intel_x86
#elif defined(_M_X64) || defined(_M_AMD64)
#define UTK__Arch_AMD64
#elif defined(_M_PPC)
#define UTK__Arch_PowerPC
#elif defined(_M_IA64)
#define UTK__Arch_Itanium
#elif defined(_M_MRX000)
#define UTK__Arch_MIPS
#else
#error Architecture not supported.
#endif
------------
The error "Architecture not supported" as triggered. Shoulkdn't _M_X64 be defined by the compiler?
Thank you for your help.



