summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index b76a210..24c6679 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ all_extensions = Extension(
include_dirs=["c_layer", numpy.get_include(), ],
libraries=["cds", "farmhash", "lz4"],
language="c++",
- extra_compile_args=["-fopenmp", "-Wall"],
+ extra_compile_args=["-fopenmp", "-Wall", "-flto"],
extra_link_args=["-fopenmp", "-Wl,--strip-all"],
)
@@ -32,7 +32,7 @@ all_extensions = cythonize(
setup(
name="pyisda",
- version="0.3.26",
+ version="0.3.27",
author="Guillaume Horel",
ext_modules=all_extensions,
packages=["pyisda"],