Skip to content

Commit

Permalink
Use only 1 parallel thread for build
Browse files Browse the repository at this point in the history
  • Loading branch information
Tabrizian committed Jan 2, 2024
1 parent e20e344 commit 93eab3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.py
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def makeinstall(self, target="install"):
if target_platform() == "windows":
verbose_flag = "" if self._verbose else "-clp:ErrorsOnly"
self.cmd(
f"msbuild.exe -m:{FLAGS.build_parallel} {verbose_flag} -p:Configuration={FLAGS.build_type} {target}.vcxproj",
f"msbuild.exe -m:1 {verbose_flag} -p:Configuration={FLAGS.build_type} {target}.vcxproj",
check_exitcode=True,
)
else:
Expand Down

0 comments on commit 93eab3a

Please sign in to comment.