Skip to content

Commit 9bd6dd6

Browse files
committed
temporary fix for working with windows in debug mode
1 parent aca987b commit 9bd6dd6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,10 @@ setup-build:
3434
compile: clean setup-build
3535

3636

37+
# NOTE: --debug will not work on windows since it asks for a non-existant _d.lib file.
38+
# TODO: Fix workflows for missing debug binaries in the future.
3739
debug: clean
38-
$(PYTHON) setup.py build_ext --inplace --debug \
40+
$(PYTHON) setup.py build_ext --inplace \
3941
--cython-always \
4042
--cython-annotate \
4143
--cython-directives="linetrace=True" \

0 commit comments

Comments
 (0)