summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2021-04-14 19:58:03 +0200
committerStefan Behnel <stefan_ml@behnel.de>2021-04-14 19:58:03 +0200
commit736119232825a1809a66dcd6d654581058003b6f (patch)
treeca8197b2d0125e7c107a6bc80f9e1e54d94dd80c
parent17670781083e3ccfedb1af4adcec614d4599eef9 (diff)
downloadcython-736119232825a1809a66dcd6d654581058003b6f.tar.gz
According to the docs, "/Od" is the default in MSVC, so in order to get it, it should be enough to clear CFLAGS.
Setting it generates warnings in Py3.9 on appveyor ("source file '"/Od"' ignored"), suggesting that the option is not recognised as such. https://docs.microsoft.com/en-us/cpp/build/reference/od-disable-debug?view=msvc-160
-rw-r--r--appveyor.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 5804d2c24..370b0072a 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -90,7 +90,7 @@ build_script:
test: off
test_script:
- "%PYTHON%\\Scripts\\pip.exe install -r test-requirements.txt"
- - "set CFLAGS=/Od"
+ - "set CFLAGS="
- "%WITH_ENV% %PYTHON%\\python.exe runtests.py -vv --no-cpp --no-code-style -j5"
artifacts: