blob: 19c197dd7bd11a5b602f33675eff6b6c0f1b2943 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Do not overwrite user's optimization.
Bug: https://bugs.gentoo.org/887651
--- a/setup.py
+++ b/setup.py
@@ -27,7 +27,7 @@ from setuptools.command import build_ext as setuptools_build_ext
CYTHON_DEPENDENCY = 'Cython(>=0.29.24,<4.0.0)'
-CFLAGS = ['-O2']
+CFLAGS = []
LDFLAGS = []
if platform.uname().system != 'Windows':
|