-
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
util-inl.h missing #27803
Comments
`node.h` may only include public APIs, which `util-inl.h` is not. There does not seem to be any reason for including it, so remove it, because otherwise native addon compilation is broken due to us not shipping the `util-inl.h` header. Refs: nodejs#27631 Fixes: nodejs#27803
I thought it had previously been indirectly included into our API, so added it in #27631 when it was removed from other core headers. I was mistaken, sorry. |
`node.h` may only include public APIs, which `util-inl.h` is not. There does not seem to be any reason for including it, so remove it, because otherwise native addon compilation is broken due to us not shipping the `util-inl.h` header. Refs: #27631 Fixes: #27803 PR-URL: #27804 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Sam Roberts <vieuxtech@gmail.com> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Why is this closed? I encountered the same bug when trying to install node-gyp. I am using the latest node version 12.3.0 |
Me too. Trying with "npm install" I get this error. |
This issue is closed because the bug has been fixed on master. The fix will go out in a release later today. Please follow along with the release at #27814. Sorry for any confusion. |
node.h:107 now includes util-inl.h. That file is not shipped by node-gyp though.
12.2 did not include this file.
The text was updated successfully, but these errors were encountered: