-
Notifications
You must be signed in to change notification settings - Fork 30k
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
Revert "build: extract common code from NODE_EXE/_G_EXE" #22458
Conversation
This reverts commit 4e2fa8b. Refs: nodejs#22457
Please 👍 to approve fast-track |
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.
Resume build CI: https://ci.nodejs.org/job/node-test-pull-request/16689/
Landed in 9d9f691 |
This reverts commit 4e2fa8b. Refs: #22457 PR-URL: #22458 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
Thanks everyone, and sorry for causing the extra work. |
Search engine lead me here about the jobserver unavailable warning. I have no stakes in this project but figured out the issue so if that can help anyone, read on. The problem comes from the fact that a define is used and that there's two levels of expansion. Make needs the define build_node_exe
$(MAKE) -C out BUILDTYPE=$1 V=$(V) It should have been: define build_node_exe
$$(MAKE) -C out BUILDTYPE=$1 V=$(V) This can be thought of as escaping the Hope that helps. |
This reverts commit 4e2fa8b.
Refs: #22457
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes