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 dc9f637 commit d1c78b1Copy full SHA for d1c78b1
Makefile
@@ -34,7 +34,7 @@ clean:
34
35
.PHONY: c_lib
36
c_lib:
37
- $(CXX) -c "ada_url/ada.cpp" -fPIC -std="c++17" -O2 -o "ada_url/ada.o"
+ $(CXX) -c "ada_url/ada.cpp" -fPIC -std="c++17" -O2 -o "ada_url/ada.o" $(ARCHFLAGS)
38
39
.PHONY: package
40
package: c_lib
pyproject.toml
@@ -25,11 +25,12 @@ build = [
25
"pp38-*",
26
"pp39-*",
27
]
28
-before-all = "make c_lib"
29
30
[tool.cibuildwheel.linux]
31
archs = ["x86_64", "aarch64"]
+before-all = "make c_lib"
32
33
[tool.cibuildwheel.macos]
archs = ["x86_64", "universal2", "arm64"]
environment = { MACOSX_DEPLOYMENT_TARGET="10.15" }
+before-build = "make clean && make c_lib"
0 commit comments