On Thu, Aug 29, 2013 at 9:55 AM, Ashish Negi <[email protected]> wrote: > I am new to node.gyp : > > In node.gyp file what does # in > 'dependencies': [ > 'node_js2c#host', > ], > > and also is '<(SHARED_INTERMEDIATE_DIR)' is part of node-gyp and not that of > google-gyp because i could not find it in google forums. > where is it defined ?
It tells gyp that node_js2c should run on the host (the machine that you're compiling on) rather than the target (the machine that you're compiling _for_). SHARED_INTERMEDIATE_DIR is a gyp constant. The fact that you couldn't find any information about it doesn't mean much because gyp has extremely poor documentation, unfortunately. When in doubt, consult the source. -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
