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 0935643 commit 10a69b0Copy full SHA for 10a69b0
cpython-windows/build.py
@@ -1073,6 +1073,13 @@ def find_additional_dependencies(project: pathlib.Path):
1073
exts = ("lib", "exp")
1074
1075
for ext in exts:
1076
+ # On 3.14+, we're building with ClangCL which does not produce `.exp`
1077
+ # files.
1078
+ if ext == "exp" and python_majmin == "314":
1079
+ # TODO(zanieb): Scope this specifically to use of ClangCL instead of
1080
+ # MSVC / determine if it's a bug that this file is missing.
1081
+ continue
1082
+
1083
source = outputs_path / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
1084
dest = core_dir / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
1085
log("copying %s" % source)
0 commit comments