-
Notifications
You must be signed in to change notification settings - Fork 29.7k
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
deps,v8: link with atomic
for platforms lacking CAS
#23286
Closed
Closed
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
c679d80
deps: update V8 to 7.1.0
targos 7adef39
build: reset embedder string to "-node.0"
targos 37bb409
src: update NODE_MODULE_VERSION to 68
targos 193ee73
deps: update v8.gyp
targos 34671d2
deps: update v8.gyp
targos d172625
deps: V8 sync gypfiles with 7.1
refack f84d485
deps,v8: link with `atomic` for platforms lacking CAS
refack 6e24dcc
temprary fix for CI
refack 24ffb72
fixup! 1
refack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
--- | ||
Checks: '-*, | ||
modernize-redundant-void-arg, | ||
modernize-replace-random-shuffle, | ||
modernize-shrink-to-fit, | ||
modernize-use-auto, | ||
modernize-use-bool-literals, | ||
modernize-use-equals-default, | ||
modernize-use-equals-delete, | ||
modernize-use-nullptr, | ||
modernize-use-override, | ||
google-build-explicit-make-pair, | ||
google-explicit-constructor, | ||
google-readability-casting' | ||
WarningsAsErrors: '' | ||
HeaderFilterRegex: '' | ||
AnalyzeTemporaryDtors: false | ||
... | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ Peter Rybin <[email protected]> | |
Peter Varga <[email protected]> | ||
Peter Wong <[email protected]> | ||
Paul Lind <[email protected]> | ||
PhistucK <[email protected]> | ||
Qingyan Li <[email protected]> | ||
Qiuyi Zhang <[email protected]> | ||
Rafal Krypa <[email protected]> | ||
|
@@ -162,6 +163,7 @@ Vladimir Krivosheev <[email protected]> | |
Vladimir Shutoff <[email protected]> | ||
Wiktor Garbacz <[email protected]> | ||
Xiaoyin Liu <[email protected]> | ||
Yannic Bonenberger <[email protected]> | ||
Yong Wang <[email protected]> | ||
Yu Yin <[email protected]> | ||
Zac Hansen <[email protected]> | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Is this WIP?
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.
Yes, and no. for the canary branch I float this as 6e24dcc
It's either this or #23257. One of them will need to land upstream, since now we see #22006 on a lot of platforms (
make test-ci
rebuilds a few files and relinks the node binary, in parallel to the script that builds the addons, so it's a race to the binary)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.
I’m not sure I follow … that PR landed, right?
I don’t think
-j1
is something we want in CI…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.
#23257 was a revert of 5d8373a, because there was a bug on macOS.
IMHO running just the
make
part oftest-ci
with-j1
is not that bad. Most of the steps have parallelism built innode/Makefile
Lines 457 to 467 in 2ba19ff
For
build-addons
&&build-addons-napi
you added the script that does multi-proc.doc-only
had it for a long time. and the test uses$JOBS
for parallelism level...