mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-08 06:53:45 +00:00
ICU-11318 Fix Windows build break on ARM with UWP projects.
X-SVN-Rev: 41006
This commit is contained in:
parent
f616fca69b
commit
26dc3c5e1b
1 changed files with 2 additions and 1 deletions
|
@ -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__) || \
|
||||
|
|
Loading…
Add table
Reference in a new issue