Skip to content

Commit 02d387c

Browse files
authored
Add support for building curl_cffi wheels on WoA (#603)
1 parent 89c490c commit 02d387c

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

libs.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@
1717
"so_name": "libcurl.dll",
1818
"so_arch": "i686"
1919
},
20+
{
21+
"system": "Windows",
22+
"machine": "ARM64",
23+
"pointer_size": 64,
24+
"libdir": "./libarm64",
25+
"sysname": "win32",
26+
"so_name": "libcurl.dll",
27+
"so_arch": "arm64"
28+
},
2029
{
2130
"system": "Darwin",
2231
"machine": "x86_64",

scripts/build.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,7 @@ def get_curl_libraries():
154154
include_dirs=[
155155
str(root_dir / "include"),
156156
str(root_dir / "ffi"),
157+
str(Path(arch["libdir"]) / "include"),
157158
],
158159
sources=[
159160
str(root_dir / "ffi/shim.c"),

0 commit comments

Comments
 (0)