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 89c490c commit 02d387cCopy full SHA for 02d387c
libs.json
@@ -17,6 +17,15 @@
17
"so_name": "libcurl.dll",
18
"so_arch": "i686"
19
},
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
+ },
29
{
30
"system": "Darwin",
31
"machine": "x86_64",
scripts/build.py
@@ -154,6 +154,7 @@ def get_curl_libraries():
154
include_dirs=[
155
str(root_dir / "include"),
156
str(root_dir / "ffi"),
157
+ str(Path(arch["libdir"]) / "include"),
158
],
159
sources=[
160
str(root_dir / "ffi/shim.c"),
0 commit comments