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 extend this for 
other platforms in the future.

Gerald

Reply via email to