Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-10-01 Thread Leif Lindholm
Thanks all - pushed as 5be5439a5a4e. (And special thanks to Laszlo for the below.) On Tue, Oct 01, 2019 at 12:01:31AM +0200, Laszlo Ersek wrote: > On 09/27/19 12:06, Philippe Mathieu-Daudé wrote: > > On 9/26/19 9:28 PM, Leif Lindholm wrote: > >> The AArch64 definitions of UINT64/INT64 differ from

Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-30 Thread Laszlo Ersek
On 09/27/19 12:06, Philippe Mathieu-Daudé wrote: > On 9/26/19 9:28 PM, Leif Lindholm wrote: >> The AArch64 definitions of UINT64/INT64 differ from the X64 ones. >> Since this is on the tool side, doing like X64 and picking the >> definitions from stdint.h feels like a better idea than hardcoding >>

Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-27 Thread Philippe Mathieu-Daudé
On 9/26/19 9:28 PM, Leif Lindholm wrote: > The AArch64 definitions of UINT64/INT64 differ from the X64 ones. > Since this is on the tool side, doing like X64 and picking the > definitions from stdint.h feels like a better idea than hardcoding > them. So copy the pattern from X64/ProcesorBind.h. Ty

Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-27 Thread Ard Biesheuvel
On Thu, 26 Sep 2019 at 21:28, Leif Lindholm wrote: > > The AArch64 definitions of UINT64/INT64 differ from the X64 ones. > Since this is on the tool side, doing like X64 and picking the > definitions from stdint.h feels like a better idea than hardcoding > them. So copy the pattern from X64/Proces

Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-26 Thread Bob Feng
Reviewed-by: Bob Feng -Original Message- From: Leif Lindholm [mailto:leif.lindh...@linaro.org] Sent: Friday, September 27, 2019 3:28 AM To: devel@edk2.groups.io Cc: Ard Biesheuvel ; Feng, Bob C ; Gao, Liming ; Laszlo Ersek Subject: [PATCH 1/1] BaseTools: use stdint.h for GCC Processor

Re: [edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-26 Thread Liming Gao
Reviewed-by: Liming Gao >-Original Message- >From: Leif Lindholm [mailto:leif.lindh...@linaro.org] >Sent: Friday, September 27, 2019 3:28 AM >To: devel@edk2.groups.io >Cc: Ard Biesheuvel ; Feng, Bob C >; Gao, Liming ; Laszlo Ersek > >Subject: [PATCH 1/1] BaseTools: use stdint.h for GCC Pr

[edk2-devel] [PATCH 1/1] BaseTools: use stdint.h for GCC ProcessorBind.h typedefs

2019-09-26 Thread Leif Lindholm
The AArch64 definitions of UINT64/INT64 differ from the X64 ones. Since this is on the tool side, doing like X64 and picking the definitions from stdint.h feels like a better idea than hardcoding them. So copy the pattern from X64/ProcesorBind.h. Cc: Ard Biesheuvel Cc: Bob Feng Cc: Liming Gao C