Skip to content

Commit 10a69b0

Browse files
committed
Drop "exp" file
1 parent 0935643 commit 10a69b0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cpython-windows/build.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,13 @@ def find_additional_dependencies(project: pathlib.Path):
10731073
exts = ("lib", "exp")
10741074

10751075
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+
10761083
source = outputs_path / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
10771084
dest = core_dir / ("python%s%s.%s" % (python_majmin, lib_suffix, ext))
10781085
log("copying %s" % source)

0 commit comments

Comments
 (0)