I followed the tutorial found here: http://elsmorian.com/post/23474168753/n ... spberry-pi for version 0.6.15. I had to make a few additions, though, to get the latest version.
First, I had to set a flag for support of armv7 features. (I'm out of my comfort zone here, but found some information in this thread about V8: https://groups.google.com/group/v8-user ... a2eea6002d)
Code: Select all
export GYP_DEFINES="armv7=0"
Finally, I had to change my CPU/GPU ram split from the default to give the CPU more memory. Otherwise I ran into out of memory errors when compiling.
It seems to be running fine, but I ran into an issue when installing modules. It looks like something might be bad with SSL. I'm running into this error:
Code: Select all
npm ERR! Error: 1074417664:error:1408D108:SSL routines:SSL3_GET_KEY_EXCHANGE:wrong signature length:../deps/openssl/openssl/ssl/s3_clnt.c:1617:
npm ERR!
npm ERR! at CleartextStream._puller (tls.js:519:24)
npm ERR! at CleartextStream.CryptoStream._pull (tls.js:453:19)
npm ERR! at SecurePair.cycle (tls.js:744:20)
npm ERR! at EncryptedStream.CryptoStream.write (tls.js:131:13)
npm ERR! at Socket.ondata (stream.js:38:26)
npm ERR! at Socket.EventEmitter.emit (events.js:88:17)
npm ERR! at TCP.onread (net.js:397:14)