On Mon, Apr 8, 2013 at 7:09 PM, Justin Collum <[email protected]> wrote: >> You don't have to download V8, it's bundled with node: >> $ make -C deps/v8 native >> (You may have to symlink gyp first.) > > Do I have to symlink it if it shows up with `which`? > > I gave it a shot and didn't get anything productive: > >> 10:03 vmplanet@ubuntu /usr/bin/nodejs-0.10.2 $ which gyp >> /usr/local/bin/gyp > > >> >> 10:03 vmplanet@ubuntu /usr/bin/nodejs-0.10.2 $ make -C deps/v8 native >> make: Entering directory `/usr/bin/nodejs-0.10.2/deps/v8' >> make: *** No rule to make target `test/cctest/cctest.gyp', needed by >> `out/Makefile.native'. Stop. >> make: Leaving directory `/usr/bin/nodejs-0.10.2/deps/v8' > > >> >> 10:04 vmplanet@ubuntu /usr/bin/nodejs-0.10.2 $
Yes, try symlinking it like this: $ (cd deps/v8/build && ln -s ../../../tools/gyp) That way you know you're building with a known-good version of gyp. -- -- 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.
