mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2024-12-28 20:43:41 +01:00
Revert to commit 87ce7cedda
and disable the building of test-double-system and test-float-system by default
This commit is contained in:
parent
9355874e4c
commit
abc6c5e76f
2 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
||||||
OPENLIBM_HOME=$(abspath ..)
|
OPENLIBM_HOME=$(abspath ..)
|
||||||
include ../Make.inc
|
include ../Make.inc
|
||||||
|
|
||||||
all: test-double test-float test-double-system # test-float-system
|
all: test-double test-float # test-double-system test-float-system
|
||||||
|
|
||||||
test-double: test-double.c libm-test.c
|
test-double: test-double.c libm-test.c
|
||||||
$(CC) -g $@.c -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
|
$(CC) -g $@.c -D__BSD_VISIBLE -I ../include -I../src ../libopenlibm.a -o $@
|
||||||
|
|
|
@ -224,7 +224,7 @@ static FLOAT max_error, real_max_error, imag_max_error;
|
||||||
#define MANT_DIG CHOOSE ((LDBL_MANT_DIG-1), (DBL_MANT_DIG-1), (FLT_MANT_DIG-1), \
|
#define MANT_DIG CHOOSE ((LDBL_MANT_DIG-1), (DBL_MANT_DIG-1), (FLT_MANT_DIG-1), \
|
||||||
(LDBL_MANT_DIG-1), (DBL_MANT_DIG-1), (FLT_MANT_DIG-1))
|
(LDBL_MANT_DIG-1), (DBL_MANT_DIG-1), (FLT_MANT_DIG-1))
|
||||||
|
|
||||||
#if defined(__WIN32__) || defined(__APPLE__)
|
#ifndef SYS_MATH_H
|
||||||
void FUNC(sincos) (int n, FLOAT *s, FLOAT *c)
|
void FUNC(sincos) (int n, FLOAT *s, FLOAT *c)
|
||||||
{
|
{
|
||||||
*s = FUNC(sin) ( *s );
|
*s = FUNC(sin) ( *s );
|
||||||
|
|
Loading…
Reference in a new issue