Re: [nodejs] Unable to compile node v0.8 RC7 on ARM (Beaglebone)

2012-08-16 Thread Robert Currie
Thanks Ewan! By just making the below 2 line change I was able to compile, build and run node v0.8.7 on a Freescale Nitrogen6W board (quad core 1GHz) ARM Rob On Friday, June 22, 2012 7:06:10 AM UTC-7, Ewan Leith wrote: Thanks Ben, I added armv7 then it started complaining about arm_neon, so

Re: [nodejs] Unable to compile node v0.8 RC7 on ARM (Beaglebone)

2012-06-22 Thread Ben Noordhuis
On Fri, Jun 22, 2012 at 3:39 PM, Ewan Leith ewan.le...@gmail.com wrote: Hi all, I'm trying to compile node v0.8 rc7 on my beaglebone, and the configure script it falling over. It does work fine on the 0.6 branch. Has anyone built node v0.8 or v0.7 on ARM? Running configure (with or without

Re: [nodejs] Unable to compile node v0.8 RC7 on ARM (Beaglebone)

2012-06-22 Thread Ewan Leith
Thanks Ben, I added armv7 then it started complaining about arm_neon, so I've added that too, to deps/v8/build/common.gypi I've added these 2 lines at the top, just inside the variables section: 'armv7%':'1', 'arm_neon%':'1', configure completes now, so I'll try a straight make without

Re: [nodejs] Unable to compile node v0.8 RC7 on ARM (Beaglebone)

2012-06-22 Thread Tim Caswell
Also, I've recently noticed that archlinux ARM has nodejs in their repository. It's usually quite up to date. They support many arm devices including the beaglebone and the raspberry pi. Even if you don't want to switch to archlinux or just want a newer node than the one they are packaging,

Re: [nodejs] Unable to compile node v0.8 RC7 on ARM (Beaglebone)

2012-06-22 Thread Ewan Leith
The compile completes with those 2 additional lines to deps/v8/build/common.gypi but running make test raises various errors like [00:44|% 7|+ 27|- 4]: release test-tls-npn-server-client*** glibc detected *** out/Release/node: free(): invalid pointer: 0x00717308 *** so I'll take a look