blob: c5dc0611c2a5cc24b0d4def6e2bbdd1a3d2ad562 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001From 500321387ceca48934bb0f323779117cd518bab6 Mon Sep 17 00:00:00 2001
2From: Lei Maohui <leimaohui@cn.fujitsu.com>
3Date: Wed, 8 May 2019 14:42:30 +0900
4Subject: [PATCH] icu: Added armeb support.
5
6Make icu support arm32 BE.
7
8Upstream-Status: Pending
9
10Signed-off-by: Lei Maohui <leimaohui@cn.fujitsu.com>
11---
12 i18n/double-conversion-utils.h | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15diff --git a/i18n/double-conversion-utils.h b/i18n/double-conversion-utils.h
Andrew Geisslerc926e172021-05-07 16:11:35 -050016index c937463..feaad0f 100644
Brad Bishopc342db32019-05-15 21:57:59 -040017--- a/i18n/double-conversion-utils.h
18+++ b/i18n/double-conversion-utils.h
Andrew Geisslerc182c622020-05-15 14:13:32 -050019@@ -115,7 +115,7 @@ int main(int argc, char** argv) {
Brad Bishopc342db32019-05-15 21:57:59 -040020 //
21 // If it prints "correct" then the architecture should be here, in the "correct" section.
22 #if defined(_M_X64) || defined(__x86_64__) || \
23- defined(__ARMEL__) || defined(__avr32__) || defined(_M_ARM) || defined(_M_ARM64) || \
24+ defined(__arm__) || defined(__avr32__) || defined(_M_ARM) || defined(_M_ARM64) || \
25 defined(__hppa__) || defined(__ia64__) || \
26 defined(__mips__) || \
Andrew Geisslerc926e172021-05-07 16:11:35 -050027 defined(__nios2__) || defined(__ghs) || \
Brad Bishopc342db32019-05-15 21:57:59 -040028--
Andrew Geisslerc926e172021-05-07 16:11:35 -0500292.25.1
Brad Bishopc342db32019-05-15 21:57:59 -040030