We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8060d commit d557492Copy full SHA for d557492
setup.py
@@ -31,7 +31,7 @@ def _libuv_build_env():
31
env = os.environ.copy()
32
33
cur_cflags = env.get('CFLAGS', '')
34
- if not re.search('-O\d', cur_cflags):
+ if not re.search(r'-O\d', cur_cflags):
35
cur_cflags += ' -O2'
36
37
env['CFLAGS'] = (cur_cflags + ' -fPIC ' + env.get('ARCHFLAGS', ''))
0 commit comments