Skip to content

Commit

Permalink
remove -ffast-math compilation flag
Browse files Browse the repository at this point in the history
  • Loading branch information
t20100 committed Feb 8, 2024
1 parent 810ff28 commit 13bf155
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -942,8 +942,8 @@ def get_blosc2_plugin():
include_dirs += get_zstd_clib('include_dirs')
define_macros.append(('HAVE_ZSTD', 1))

extra_compile_args += ['-O3', '-ffast-math', '-std=gnu99']
extra_compile_args += ['/Ox', '/fp:fast']
extra_compile_args += ['-O3', '-std=gnu99']
extra_compile_args += ['/Ox']
extra_compile_args += ['-pthread']
extra_link_args += ['-pthread']

Expand Down

0 comments on commit 13bf155

Please sign in to comment.