mirror of
https://git.planet-casio.com/Vhex-Kernel-Core/fxlibc.git
synced 2024-12-28 04:23:38 +01:00
math, fenv, complex: use OpenLibm unconditionally
This won't build on vhex-x86 but that can be left for another time. The previous approach did not work because the __SUPPORT flags are not defined when interfacing the library.
This commit is contained in:
parent
6847596bcd
commit
865b01c812
3 changed files with 3 additions and 9 deletions
|
@ -1,4 +1,2 @@
|
||||||
/* On SuperH, we use a port of OpenLibm. */
|
/* On SuperH, we use a port of OpenLibm. */
|
||||||
#ifdef __SUPPORT_ARCH_SH
|
#include <openlibm_complex.h>
|
||||||
# include <openlibm_complex.h>
|
|
||||||
#endif
|
|
||||||
|
|
|
@ -1,4 +1,2 @@
|
||||||
/* On SuperH, we use a port of OpenLibm. */
|
/* On SuperH, we use a port of OpenLibm. */
|
||||||
#ifdef __SUPPORT_ARCH_SH
|
#include <openlibm_fenv.h>
|
||||||
# include <openlibm_fenv.h>
|
|
||||||
#endif
|
|
||||||
|
|
|
@ -1,4 +1,2 @@
|
||||||
/* On SuperH, we use a port of OpenLibm. */
|
/* On SuperH, we use a port of OpenLibm. */
|
||||||
#ifdef __SUPPORT_ARCH_SH
|
#include <openlibm_math.h>
|
||||||
# include <openlibm_math.h>
|
|
||||||
#endif
|
|
||||||
|
|
Loading…
Reference in a new issue