node.js segmentation fault after building on Jetson board

Hi, I have a brand new Jetson board running Ubuntu 14.04LTS. I download source code to node.js v0.10.33. I did the following:

sudo apt-get install build-essential
./configure
make
sudo make install

this build node.js without errors. However when I run either node or the package manager npm I get:

Segmentation fault

Any idea what I did wrong? This is the same steps I’ve used on other ARM, x86, AMD platforms to get node.js installed. Any help would be appreciated.

I believe I found the solution. It appears this is known “will not fix” bug in Google’s V8. The workaround is to disable the “snapshot” feature.

./comfigure --without-snapshot
make
sudo make install

You can read a bit about it here: [url]Node.js source code build giving segmentation fault on ARM - Stack Overflow