You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
arm7l libs are compiled against GLIBC_2.16, which isn't available on RPi 2 with Raspbian
wget https://iojs.org/dist/v2.3.1/iojs-v2.3.1-linux-armv7l.tar.gz
tar xvf iojs-v2.3.1-linux-armv7l.tar.gz
pushd iojs-v2.3.1-linux-armv7l
bin/iojs --version
iojs: /lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.16' not found (required by iojs)iojs: /lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.15' not found (required by iojs)
Workaround
The arm6l bins work.
wget https://iojs.org/dist/v2.3.1/iojs-v2.3.1-linux-armv7l.tar.gz
tar xvf iojs-v2.3.1-linux-armv7l.tar.gz
pushd iojs-v2.3.1-linux-armv7l
bin/iojs --version
The text was updated successfully, but these errors were encountered:
#349 is a tracking issue for this, the io.js nightlies for armv7 are built on wheezy so should be fine, we just need to flip a switch to do it for releases but I've been holding off for <reasons>
Problem
RPi 2 is
arm7l libs are compiled against GLIBC_2.16, which isn't available on RPi 2 with Raspbian
Workaround
The arm6l bins work.
wget https://iojs.org/dist/v2.3.1/iojs-v2.3.1-linux-armv7l.tar.gz tar xvf iojs-v2.3.1-linux-armv7l.tar.gz pushd iojs-v2.3.1-linux-armv7l bin/iojs --version
The text was updated successfully, but these errors were encountered: