mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Apple happiness
This commit is contained in:
parent
5d29e175d8
commit
ffbdd91e0e
@ -52,10 +52,12 @@ Author: paboyle <paboyle@ph.ed.ac.uk>
|
|||||||
|
|
||||||
|
|
||||||
#include <fenv.h>
|
#include <fenv.h>
|
||||||
#ifdef __APPLE__
|
|
||||||
static int
|
static int
|
||||||
|
#ifdef __APPLE__
|
||||||
feenableexcept (unsigned int excepts)
|
feenableexcept (unsigned int excepts)
|
||||||
{
|
{
|
||||||
|
#if 0
|
||||||
|
// Fails on Apple M1
|
||||||
static fenv_t fenv;
|
static fenv_t fenv;
|
||||||
unsigned int new_excepts = excepts & FE_ALL_EXCEPT;
|
unsigned int new_excepts = excepts & FE_ALL_EXCEPT;
|
||||||
unsigned int old_excepts; // previous masks
|
unsigned int old_excepts; // previous masks
|
||||||
@ -70,6 +72,7 @@ feenableexcept (unsigned int excepts)
|
|||||||
|
|
||||||
iold_excepts = (int) old_excepts;
|
iold_excepts = (int) old_excepts;
|
||||||
return ( fesetenv (&fenv) ? -1 : iold_excepts );
|
return ( fesetenv (&fenv) ? -1 : iold_excepts );
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user