Well I thought I'd give it a shot with a fresh Ubuntu 12 VM. Installed node using the Ubuntu instructions here:
https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager#ubuntu First issue, you have to build node from source. If you install it following the instructions on joyent's wiki page (above), you wont have a deps directory. OK, got that fixed. Next issue: `$ make -C deps/v8 native` doesn't work, have to use ia32.release to get it to work. OK so I tried making that symlink, which worked and then I did this: vmplanet@ubuntu:/usr/local/src/node$ sudo make -C deps/v8 native make: Entering directory `/usr/local/src/node/deps/v8' make: *** No rule to make target `native'. Stop. make: Leaving directory `/usr/local/src/node/deps/v8' Nope. So I tried it with ia32.release. vmplanet@ubuntu:/usr/local/src/node$ sudo make -C deps/v8 ia32.release make: Entering directory `/usr/local/src/node/deps/v8' make[1]: Entering directory `/usr/local/src/node/deps/v8/out' CXX(target) /usr/local/src/node/deps/v8/out/ia32.release/obj.target/cctest/test/cctest/test-api.o ../test/cctest/test-api.cc: In function ‘void TestGlobalPrototype()’: Big ol' error stack. This is a completely fresh Ubuntu VM. Opened the VM, did `sudo apt-get upgrade` and then followed the steps above. I'm stumped here. -- -- 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.
