So i got raspberry pi (version 2) the other day and follow the instructions on installing.
Everything went well but when i came to this part of the instruction
Line:
“make Release -C /home/pi/openFrameworks/libs/openFrameworksCompiled/project”
This error appears:
"
make: Entering directory ‘/home/pi/openFrameworks/libs/openFrameworksCompiled/project’
HOST_OS=Linux
HOST_ARCH=armv7l
makefileCommon/config.shared.mk:201: *** This package doesn’t support your platform, probably you downloaded the wrong package?. Stop.
make: Leaving directory ‘/home/pi/openFrameworks/libs/openFrameworksCompiled/project’
"
we did some changes to fix a problem and now the default for rpi 1 and 2 is armv6 but the current version still won’t work well with rpi2. can you try the nightly builds or the release candidate for 0.9.1 from: 0.9.1 Release Candidate 1
i would try with plain jessie, no idea what’s the difference but armv7 should compile right away with 0.9 and armv6 with 0.9.1 none of them need to specify a variant
yes that’s it, we were using armv7 with 0.9 but it was problematic because raspbian is compiled for arm6 so from 0.9.1 on we recomend using armv6 when using raspbian
I was having the same issue, and 0.9.1 was not working either.
The problem was that config.shared.mk assumes that you have RPI_ROOT defined if using Raspbian, so if you don’t it never recognizes it as such and thus fails.
You can solve it by doing export of RPI_ROOT or by editing config.shared.mk (line 47):
looks like this has been fixed in the 0.9.2 version - out of the box the armv6 package compiles fine on the RPi2, but if you’re using 0.9.1 it looks like you’ll need the modification above.