Skip to content

Commit

Permalink
Merge pull request #13137 from ffontaine/master
Browse files Browse the repository at this point in the history
BUG: Fix build for glibc on ARC and uclibc.
  • Loading branch information
charris committed Mar 16, 2019
2 parents f127583 + 1125f1e commit 06da877
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion numpy/core/src/npymath/ieee754.c.src
Expand Up @@ -681,7 +681,8 @@ void npy_set_floatstatus_invalid(void)
fp_raise_xcp(FP_INVALID);
}

#elif defined(_MSC_VER) || (defined(__osf__) && defined(__alpha))
#elif defined(_MSC_VER) || (defined(__osf__) && defined(__alpha)) || \
defined (__UCLIBC__) || (defined(__arc__) && defined(__GLIBC__))

/*
* By using a volatile floating point value,
Expand Down

0 comments on commit 06da877

Please sign in to comment.