8000 gh-130419: Do not build the _freeze_module twice in case of Windows PGO builds by chris-eibl · Pull Request #130420 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-130419: Do not build the _freeze_module twice in case of Windows PGO builds #130420

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 24, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
do not build the freeze module twice
in case of Windows PGO builds
  • Loading branch information
chris-eibl committed Feb 21, 2025
commit ce8498ff25692521b6db5722cfc21828a30c5273
3 changes: 2 additions & 1 deletion PCbuild/pcbuild.proj
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@
</ItemGroup>

5A0C <Target Name="Build">
<MSBuild Projects="@(FreezeProjects)"
<MSBuild Condition="$(Configuration) != 'PGUpdate'"
Projects="@(FreezeProjects)"
Properties="Configuration=%(Configuration);Platform=%(Platform);%(Properties)"
BuildInParallel="%(BuildInParallel)"
StopOnFirstFailure="true"
Expand Down
Loading
0