We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2dc113b + bc244c5 commit ab21e95Copy full SHA for ab21e95
pyproject.toml
@@ -16,7 +16,6 @@ skip = ["pp38-*"]
16
enable = ["pypy"]
17
test-requires = "pytest"
18
test-command = "pytest {project}/tests"
19
-environment = { CFLAGS = "-g0" }
20
21
[tool.cibuildwheel.macos]
22
archs = ["x86_64", "universal2", "arm64"]
setup.py
@@ -92,6 +92,7 @@ def _configure_extensions_with_vendored_libs() -> List[Extension]:
92
libraries = []
93
if platform.system() != "Windows":
94
extra_compile_args.append("-std=c++11")
95
+ extra_compile_args.append("-g0")
96
define_macros.append(("HAVE_MMAP", "1"))
97
define_macros.append(("HAVE_UNISTD_H", "1"))
98
define_macros.append(("HAVE_SYS_MMAN_H", "1"))
0 commit comments