-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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
[v10.x] deps: do not link against librt #29729
Conversation
It is not needed, and causes an unnecessary runtime dependency with some linkers, such as devtoolset-6 on centos7-ppc64le. See: nodejs#29718
Only v10.x is affected? |
8 isn't affected, because we aren't going to change anything about its build, its almost EOL. EDIT: specifically, we aren't going to change from building on ubuntu-1404, even though its EOL, and start building on centos7 -- so we don't care about this link problem, because it seems devtools-6 on centos7 specific. #29727 is the master equivalent, maybe this is a backport, but the files are completely different, the v8.gyp changed location from deps to tools. |
It is not needed, and causes an unnecessary runtime dependency with some linkers, such as devtoolset-6 on centos7-ppc64le. See: #29718 PR-URL: #29729 Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Beth Griggs <Bethany.Griggs@uk.ibm.com> Reviewed-By: David Carlier <devnexen@gmail.com>
Landed in 7f48519 |
It is not needed, and causes an unnecessary runtime dependency with some
linkers, such as devtoolset-6 on centos7-ppc64le.
Se
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes