From 4c7b71ac4ffd8d93caf83267a68c81b414a9dfbf Mon Sep 17 00:00:00 2001 From: Konrad Dybcio <32096130+konradybcio@users.noreply.github.com> Date: Wed, 24 Mar 2021 07:32:11 +0100 Subject: [PATCH] [HHPCOMP] Add ARM (32-bit) types (#3548) ARM32 seems to use the same type defines as i386 and friends. Let's allow the thing to be compiled again! CORE-17517 Signed-off-by: Konrad Dybcio --- sdk/tools/hhpcomp/chmc/chm.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/tools/hhpcomp/chmc/chm.h b/sdk/tools/hhpcomp/chmc/chm.h index 27aa6f79901..7256a3991f4 100644 --- a/sdk/tools/hhpcomp/chmc/chm.h +++ b/sdk/tools/hhpcomp/chmc/chm.h @@ -49,7 +49,8 @@ typedef unsigned __int64 UInt64; /* Sparc */ /* MIPS */ /* PPC */ -#elif __i386__ || __sun || __sgi || __ppc__ +/* ARM (32-bit) */ +#elif __i386__ || __sun || __sgi || __ppc__ || __arm__ typedef unsigned char UChar; typedef short Int16; typedef unsigned short UInt16;