On Wed, Apr 15, 2015 at 10:51 AM, Guy Dillen <[email protected]> wrote: > Hi, > > When running (trying to :-) ) nodejs (after doing the build in a VM with > same OS but other processor) I get a Fatal error in > .../deps/v8/src/ia32/assembler-ia32.cc, line 54 > CHECK(cpu.has_sse2()) failed. > > - Does this mean nodejs requires the SSE2 instruction set?
Yes, or at least, V8's ia32 backend does. There is a separate non-SSE2 backend that you can enable with `./configure --dest-cpu=x87`. You may have to add `--without-ssl` as well. x87 doesn't get much testing so I can't vouch for its current status. If it doesn't work, file an issue here[0] and we'll see what we can do. [0] https://github.com/iojs/io.js/issues > - If not since my target machine has only 256 MB RAM ("hangs" during build > phase) what are my options to still get nodejs on this machine? > > Target machine is running Voyage Linux i386, processor AMD Geode LX800. You probably need more than 256 MB to build so you may want to build on your desktop or laptop and then copy over the binary. You can add swap but it's probably going to take a hell of a long time to finish. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/CAHQurc9Cj0p%2Bk459niP4vR1UF26KFg6UAF9Tk%3DjE48JkmrXWwQ%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
