On Fri, Oct 5, 2012 at 6:10 AM, Justin Meltzer <[email protected]> wrote: > Yeah exactly, the bundled version in deps/openssl. > > Thanks! Do I need to run ./configure? or just make? what about make install?
Right, I assumed you had already built node. You don't have to reinstall it on every compile, the binary is quite self-contained. Here, try this: $ export JOBS=<num-cpus> # speed up build $ ./configure $ make BUILDTYPE=Release $ out/Release/node # starts the REPL If you want debug builds, repeat the last two steps with s/Release/Debug/ -- 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
