On Fri, Apr 5, 2013 at 4:02 PM, Mario Zimmermann <[email protected]> wrote: > Hello all, > > I try to install nodejs on a Linux machine without root privileges in a > local directory: > > ./configure --prefix=/nfs/ccs/local > make > > The compilation runs fine without any issues. But a 'make test' gives 100% > failure. > > Calling > > node -v > node -h > > gives the exptected output, but every other call (node -i) or trying to run > a js script simply results in the message "Aborted". > > I have tried nearly all of the possible configure switches to no avail. > Now I'm completely lost. > > Any hints on how to look further? > > Many thanks in advance, > Mario > > PS: Some system info: > > uname -a > Linux li01b15 2.6.18-8.1.15.el5 #1 SMP Thu Oct 4 04:06:39 EDT 2007 x86_64 > x86_64 x86_64 GNU/Linux > > Python 2.7.3 > GNU make 3.8.1 > g++ (GCC) 4.1.2 20080704 (Red Hat 4.1.2-46)
Upgrade your gcc, 4.1 is positively ancient and known buggy. 4.2 is the minimum supported version but realistically you should compile with 4.5 or newer. -- -- 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.
