Uh oh!
There was an error while loading. Please reload this page.
fix: duplicate ninja rules for v8 (cross-compiling) - #185
Open
moto-timo wants to merge 1 commit into
Open
Conversation
cclauss
reviewed
Feb 19, 2023
Uh oh!
There was an error while loading. Please reload this page.
cclauss
commented
Feb 19, 2023
Contributor
Please rebase. |
moto-timoforce-pushed
the
fix-v8-ninja-cross-compiling
branch
2 times, most recently
from
February 20, 2023 17:20
09e3ad8 to
58e88cfComparemoto-timo
commented
Feb 20, 2023
ContributorAuthor
Rebased again. |
avoids duplicate ninja rules for v8 used in host and target From: minrk/node@5e533cb Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> Reported in nodejs/node#46690 and nodejs/node#37441 Minor refactoring as recommended by Christian Clauss. Signed-off-by: Tim Orling <tim.orling@konsulko.com>
moto-timoforce-pushed
the
fix-v8-ninja-cross-compiling
branch
from
February 20, 2023 17:49
58e88cf to
ef910d3Comparemoto-timo
commented
Feb 20, 2023
ContributorAuthor
Rebased to pick up the |
moto-timo
commented
Feb 23, 2023
ContributorAuthor
@cclauss I believe I addressed your recommendations and rebase concerns. Anything else that needs to be done or any more discussion? |
Contributor
This pull request is rebased and the tests are all green. ✅ Thanks for that. Now what we need is some maintainer who has enough expertise to review and approve or make suggestions. |
moto-timo
commented
Feb 23, 2023
ContributorAuthor
@cclauss great. Thank you for the response. |
ryzokuken
commented
Feb 24, 2023
Contributor
I can confirm that this goes with the default naming conventions of |
tie added a commit
to tie/nixpkgs
that referenced
this pull request
Jul 15, 2024
The v8 library supports only limited number of build platforms based on the host architecture. The rule there is the bitness (the mixing of 32bit and 64bit architectures seems to be in most cases disallowed). Thus this adds usage of the emulator of the host platform and builds tools for that. This also allows us to use ninja instead of make when build ≠ host while waiting for nodejs/gyp-next#185 to be merged. Co-authored-by: Ivan Trubach <mr.trubach@icloud.com>
16 tasks
This file contains hidden or 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
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
avoids duplicate ninja rules for v8 used in host and target
From: minrk/node@5e533cb
Reported in nodejs/node#46690 and nodejs/node#37441