On my BeagleBoardXM Rev-c, Ubuntu 12.10, I’m trying to build NodeJS v0.10.0 using info found here:
https://groups.google.com/d/msg/beagleboard/T5_lVo0Ngn4/IeMZFIVNWj8J
“./configure”, “make”, and “make install” run without error, but when I try to run “node” or “npm”, I get a Segmentation fault.
Running ./configure generates the settings below. armv7 looks correct, does arm_fpu or some other setting look awry to anybody else?
`
{ ‘target_defaults’: { ‘cflags’: [],
‘default_configuration’: ‘Release’,
‘defines’: [],
‘include_dirs’: [],
‘libraries’: []},
‘variables’: { ‘arm_fpu’: ‘vfpv3’,
‘arm_neon’: 0,
‘armv7’: 1,
‘clang’: 0,
‘gcc_version’: 47,
‘host_arch’: ‘arm’,
‘node_install_npm’: ‘true’,
‘node_prefix’: ‘’,
‘node_shared_cares’: ‘false’,
‘node_shared_http_parser’: ‘false’,
‘node_shared_libuv’: ‘false’,
‘node_shared_openssl’: ‘false’,
‘node_shared_v8’: ‘false’,
‘node_shared_zlib’: ‘false’,
‘node_tag’: ‘’,
‘node_unsafe_optimizations’: 0,
‘node_use_dtrace’: ‘false’,
‘node_use_etw’: ‘false’,
‘node_use_openssl’: ‘true’,
‘node_use_perfctr’: ‘false’,
‘node_use_systemtap’: ‘false’,
‘python’: ‘/usr/bin/python’,
‘target_arch’: ‘arm’,
‘v8_enable_gdbjit’: 0,
‘v8_no_strict_aliasing’: 1,
‘v8_use_arm_eabi_hardfloat’: ‘true’,
‘v8_use_snapshot’: ‘true’}}
`