File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,8 @@ debug: check-env clean
30
30
echo "DEF DEBUG = 1" > asyncpg/protocol/__debug.pxi
31
31
cython -a -X linetrace=True asyncpg/protocol/protocol.pyx; rm asyncpg/protocol/__debug.pxi
32
32
@echo "$$CYTHON_BUILD_PATCH_SCRIPT" | $(PYTHON)
33
- $(PYTHON) setup.py build_ext --inplace --debug
33
+ CFLAGS="${CFLAGS} -DCYTHON_TRACE=1 -DCYTHON_TRACE_NOGIL=1" \
34
+ $(PYTHON) setup.py build_ext --inplace --debug
34
35
35
36
36
37
test:
Original file line number Diff line number Diff line change 39
39
"asyncpg.protocol.protocol",
40
40
["asyncpg/protocol/record/recordobj.c",
41
41
"asyncpg/protocol/protocol.c"],
42
- extra_compile_args=['-O2', '-DCYTHON_TRACE=1', '-D CYTHON_TRACE_NOGIL=1' ])
42
+ extra_compile_args=['-O2'])
43
43
]
44
44
)
You can’t perform that action at this time.
0 commit comments