nodejs 'make install'ed headers are ignored
See original GitHub issuenode’s build process installs headers in {prefix}/include/node
when running make install
, but node-gyp install does download its own copy almost the same. One of them is just an useless extra.
And ./configure
d headers are better tailored for the local environment usually.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (3 by maintainers)
Top Results From Across the Web
NodeJS headers on Windows are not installed automatically
The workaround with using of headers from "git clone"-ed "node\deps" worked. However, several days after I found the proper solution which ...
Read more >Node.js v19.3.0 Documentation
First, make sure to have downloaded and installed Node.js. See Installing Node.js via ... deepEqual(obj1, obj3); // OK // Prototypes are ignored: assert....
Read more >How To Secure Node.js Applications with a Content Security ...
In this tutorial, you'll review the different protections the CSP header offers by implementing one in an example Node.js application.
Read more >Library functions available for Node.js canary scripts
Node.js library classes and functions that apply to all canaries ... restrictedHeaders (array)— A list of header values to ignore, if headers are...
Read more >Node.js agent API | New Relic Documentation
How to use the Node.js API to name, rename, and ignore requests, and to read router names with New Relic's Node.js agent.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
FYI: When we build this with
nix
, usingnix-npm-buildpackage
’sbuildNpmPackage
we only faced this issue onaarch64
machines.https://nixos.org/manual/nixpkgs/stable/ section 17.19.6.2.5. Pitfalls contains a workaround.
Thanks 👍