ICU-11318 Fix Windows build break on ARM with UWP projects.

X-SVN-Rev: 41006
This commit is contained in:
Jeff Genovy 2018-02-28 05:51:54 +00:00
parent f616fca69b
commit 26dc3c5e1b

View file

@ -71,8 +71,9 @@ inline void abort_noreturn() { abort(); }
// the output of the division with the expected result. (Inlining must be
// disabled.)
// On Linux,x86 89255e-22 != Div_double(89255.0/1e22)
// ICU PATCH: Enable ARM builds for Windows with 'defined(_M_ARM)'.
#if defined(_M_X64) || defined(__x86_64__) || \
defined(__ARMEL__) || defined(__avr32__) || \
defined(__ARMEL__) || defined(__avr32__) || defined(_M_ARM) || \
defined(__hppa__) || defined(__ia64__) || \
defined(__mips__) || \
defined(__powerpc__) || defined(__ppc__) || defined(__ppc64__) || \