-
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
How do you verify npm is compiled against iojs #426
Comments
Currently the |
@mscdex that's only for the |
There's definitely nothing specific that npm itself does. Remember that it doesn't even build the binaries, but instead hands that responsibility off to |
seems like a node-gyp thing? re-open if it isn't. :) |
cc @rvagg @othiym23
TL:DR;
I compiled iojs from source. This created a iojs compatible binary at
/usr/local/bin/npm version
I try to verify that my new
npm
is compiled against iojs withAs you can see the only difference is the version of
npm
, I know my local npm on PATH is compiled against node 0.10How do I know whether
npm install
ornpm rebuild
in my application will actually recompile my modules against iojs.There is nothing in the
npm rebuild
output that tells me informationWhen I run my application it fails. I presume its because
v8-profiler
doesnt support iojs but I cant tell from the outputIt'd be great if we had a way of knowing what the state of my binary dependencies are. i.e. which version of v8 are they compiled against. Which version of node.h or iojs.h
The text was updated successfully, but these errors were encountered: