Skip to content

Commit 1c6abdf

Browse files
committed
Do not use -ffast-math.
It is a terrible idea for this type of library. It can lead to bugs that are very hard to figure out.
1 parent 1de72d0 commit 1c6abdf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile-custom

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ tar:
3636

3737

3838
python2:
39-
CFLAGS="-O3 -funroll-loops -fexpensive-optimizations -ffast-math" python2 setup.py build
39+
CFLAGS="-O3 -funroll-loops -fexpensive-optimizations" python2 setup.py build
4040

4141
python3:
4242
CFLAGS="-std=c++11 -O0 -g -UNDEBUG" python3 setup.py build

0 commit comments

Comments
 (0)