Skip to content
Snippets Groups Projects
Commit c5f98ef9 authored by Raymond Toy's avatar Raymond Toy
Browse files

Add -ffp-contract=off to make sure no fused-multiply instructions are

used.  This can have unexpected results, especially in the fdlibm
routines if a fused-multiply is used the wrong place.
parent 80df05a1
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ ifdef FEATURE_UNICODE
UNICODE = -DUNICODE
endif
CFLAGS = $(OSX_VERSION) -g -O3 -DDARWIN -Dppc $(LINKAGE) $(GENCGC) $(UNICODE)
CFLAGS = $(OSX_VERSION) -g -O3 -ffp-contract=off -DDARWIN -Dppc $(LINKAGE) $(GENCGC) $(UNICODE)
ASFLAGS = $(OSX_VERSION) -traditional -g -O3 -DDARWIN -Dppc $(LINKAGE) $(GENCGC)
UNDEFSYMPATTERN = -Xlinker -u -Xlinker &
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment