mirror of
https://git.planet-casio.com/Lephenixnoir/OpenLibm.git
synced 2025-04-04 17:47:14 +02:00
work around optimisation bugs for rint
This commit is contained in:
parent
39bfc468bc
commit
dcc0d8da74
2 changed files with 8 additions and 8 deletions
14
Make.inc
14
Make.inc
|
@ -49,6 +49,13 @@ CFLAGS_add += -std=c99 -Wall -I$(OPENLIBM_HOME) -I$(OPENLIBM_HOME)/include -I$(O
|
||||||
|
|
||||||
default: all
|
default: all
|
||||||
|
|
||||||
|
# *int / *intf need to be built with -O0
|
||||||
|
src/%int.c.o: src/%int.c
|
||||||
|
$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
|
||||||
|
|
||||||
|
src/%intf.c.o: src/%intf.c
|
||||||
|
$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
|
||||||
|
|
||||||
%.c.o: %.c
|
%.c.o: %.c
|
||||||
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_add) -c $< -o $@
|
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_add) -c $< -o $@
|
||||||
|
|
||||||
|
@ -78,14 +85,7 @@ override ARCH := amd64
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# The optimization flag may be overriden with the environment variable CFLAGS.
|
# The optimization flag may be overriden with the environment variable CFLAGS.
|
||||||
ifeq ($(ARCH),powerpc)
|
|
||||||
# tests hang at higher optimization levels
|
|
||||||
CFLAGS ?= -O0
|
|
||||||
else if ($(ARCH),arm)
|
|
||||||
CFLAGS ?= -O0
|
|
||||||
else
|
|
||||||
CFLAGS ?= -O2
|
CFLAGS ?= -O2
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(findstring MINGW,$(OS)))
|
ifneq (,$(findstring MINGW,$(OS)))
|
||||||
override OS=WINNT
|
override OS=WINNT
|
||||||
|
|
|
@ -4443,7 +4443,7 @@ main (int argc, char **argv)
|
||||||
/* Nearest integer functions: */
|
/* Nearest integer functions: */
|
||||||
ceil_test ();
|
ceil_test ();
|
||||||
floor_test ();
|
floor_test ();
|
||||||
//nearbyint_test ();
|
nearbyint_test ();
|
||||||
rint_test ();
|
rint_test ();
|
||||||
lrint_test ();
|
lrint_test ();
|
||||||
llrint_test ();
|
llrint_test ();
|
||||||
|
|
Loading…
Add table
Reference in a new issue