-
Notifications
You must be signed in to change notification settings - Fork 7
Do not restrict parallelism on Makefile
#914
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -22,7 +22,7 @@ configure: .always | |||||
|
|
||||||
| compile: .always | ||||||
| $(CMAKE) --build ./build --config $(PRESET) --target clang_format | ||||||
| $(CMAKE) --build ./build --config $(PRESET) --parallel 4 | ||||||
| $(CMAKE) --build ./build --config $(PRESET) | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. P2: Removing Prompt for AI agents
Suggested change
|
||||||
| $(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \ | ||||||
| --component sourcemeta_core | ||||||
| $(CMAKE) --install ./build --prefix ./build/dist --config $(PRESET) --verbose \ | ||||||
|
|
||||||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Removing
--parallelhere may causecmake --buildto run effectively single-threaded for some generators (e.g., Unix Makefiles), which seems opposite to the PR intent of “not restricting parallelism”. Is the intent to rely onCMAKE_BUILD_PARALLEL_LEVEL/generator defaults instead?Severity: medium
🤖 Was this useful? React with 👍 or 👎, or 🚀 if it prevented an incident/outage.