mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
bc3f903bc2
While there, also modify the install target. We should make sure to install all openlibm*.h headers. There is still some work to be done: openlibm_fenv_*.h still depends on some additional bits. I'd propose that we eventually create an include/openlibm_cdefs.h that contains all of the macros we need.
15 lines
338 B
C
15 lines
338 B
C
#ifdef OPENLIBM_USE_HOST_FENV_H
|
|
#include <fenv.h>
|
|
#else /* !OPENLIBM_USE_HOST_FENV_H */
|
|
|
|
#if defined(__arm__)
|
|
#include <openlibm_fenv_arm.h>
|
|
#elif defined(__x86_64__)
|
|
#include <openlibm_fenv_amd64.h>
|
|
#elif defined(__i386__)
|
|
#include <openlibm_fenv_i387.h>
|
|
#else
|
|
#error "Unsupported platform"
|
|
#endif
|
|
|
|
#endif /* OPENLIBM_USE_HOST_FENV_H */
|