Re: [PATCH] libgcc: aarch64: Get hwcap for FreeBSD

2020-05-07 Thread Andreas Tobler
On 07.05.20 09:25, Kyrylo Tkachov wrote: Hi Andreas, -Original Message- From: Gcc-patches On Behalf Of Andreas Tobler Sent: 06 May 2020 21:17 To: GCC Patches Subject: [PATCH] libgcc: aarch64: Get hwcap for FreeBSD Hi all, Since FreeBSD 12, FreeBSD has a sys/auxv.h header too but it

RE: [PATCH] libgcc: aarch64: Get hwcap for FreeBSD

2020-05-07 Thread Kyrylo Tkachov
Hi Andreas, > -Original Message- > From: Gcc-patches On Behalf Of > Andreas Tobler > Sent: 06 May 2020 21:17 > To: GCC Patches > Subject: [PATCH] libgcc: aarch64: Get hwcap for FreeBSD > > Hi all, > > Since FreeBSD 12, FreeBSD has a sys/auxv.h header too but it doesn't > provide the ge

Re: [PATCH] libgcc: aarch64: Get hwcap for FreeBSD

2020-05-06 Thread Gerald Pfeifer
On Wed, 6 May 2020, Andreas Tobler wrote: > +#ifndef __FreeBSD__ >unsigned long hwcap = __getauxval (AT_HWCAP); > +#else > + unsigned long hwcap; Would it make sense to change the logic to #ifdef __FreeBSD__ .. #else .. #endif ? I believe that makes it easier to potentially exten