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
sudo apt-get clean
sudo apt-get update
# expand filesystem and set GPU memory to 128
# installing openframeworks
wget https://openframeworks.cc/versions/v0.10.0/of_v0.10.0_linuxarmv6l_release.tar.gz
mkdir openFrameworks
tar vxfz of_v0.10.0_linuxarmv6l_release.tar.gz -C openFrameworks --strip-components 1
cd /home/pi/openFrameworks/scripts/linux/debian
nano install_dependencies.sh # change libgles1-mesa-dev to libglvnd-dev
sudo ./install_dependencies.sh
make -j3 Release -C /home/pi/openFrameworks/libs/openFrameworksCompiled/project
cd /home/pi/openFrameworks/examples/graphics/polygonExample
nano config.make # add -latomic to linker script
make
make run
# successful running plygon example
Then I try to build 0.10.0 release:
cd /home/pi/openFrameworks/addons/
wget https://github.com/jvcleave/ofxOMXPlayer/archive/refs/tags/0.10.0.zip
unzip 0.10.0.zip
cd ofxOMXPlayer-0.10.0/
sudo ./install_depends.sh
sudo apt-get install libavfilter-dev # no need because it already installed by install_depends.sh
./makeAllExamples.sh
And many "stray in program" errors below. It happens because there is -I/./bin in CFLAGS and compiler try to include /bin/locale instead of right locale header.
The text was updated successfully, but these errors were encountered:
Also I temporary rename /bin/locale to /bin/locale.1 and get next error:
In file included from /home/pi/openFrameworks/addons/ofxOMXPlayer-0.10.0/example-direct-mode/src/ofApp.cpp:1:
/home/pi/openFrameworks/addons/ofxOMXPlayer-0.10.0/example-direct-mode/src/ofApp.h:4:10: fatal error: ofxOMXPlayer.h: No such file or directory
#include "ofxOMXPlayer.h"
I try to build ofxOMXPlayer
First of all I install openframeworks 0.10.0 by instructions from https://openframeworks.cc/setup/raspberrypi/raspberry-pi-getting-started/
Then I try to build 0.10.0 release:
And get following output:
And many "stray in program" errors below. It happens because there is
-I/./bin
in CFLAGS and compiler try to include /bin/locale instead of right locale header.The text was updated successfully, but these errors were encountered: