gsautr
gsautr
Same ^ More deets in the issue I just added (comes from FacebookSDK dependency)
So great to see this, thanks @avilleret - I'm also running 18.04 and have been following your guide [how to create sysroot](https://github.com/ofnode/of/blob/0.10/how_to_create_sysroot.md), though not managed yet. First thing is there...
Silly mistake - libs were already installed so aptitude would skip over them - solution is to use "reinstall" alongside "install" to ensure everything is present: ``` sudo aptitude --download-only...
Hey @avilleret - starting anew with `libglew2.0` and `libglew-dev` on the Pi side, I got dependency errors on the Ubuntu side (glew could not find "gl" / "glu"). Trashed sysroot...
Ah, I see the update is to **add** glew into the sysroot. This is the error I get on Ubuntu side: ``` cmake ../of -DCMAKE_TOOLCHAIN_FILE=../of/dev/arm-linux-gnueabihf.cmake -GNinja -DCMAKE_SYSROOT=`realpath "${PWD}/../sysroot"` ~/ofnode/build-of-rpi ~/ofnode...
Hi @avilleret - update on attempt: * D/led and extract your sysroot example * Clone of.git recursively with submodules to fix glew CMakeList missing errors * Fix typo of -GNinja...
Thanks - I saw some strange behaviour with ofGLFWWindowSettings still being seen even after I had `rm -rf` the entire dir and cloned the latest. Is there another bin or...
Sorry for the late reply! - Installed GCC 8.2.0 and added to Ubuntu path: `echo 'export PATH=/opt/cross-compiler/bin:$PATH' >> .bashrc && echo 'export LD_LIBRARY_PATH=/opt/cross-compiler/lib:$LD_LIBRARY_PATH' >> .bashrc` - OF successfully compiled, folder...
Success! Silly mistake - I needed to name the GCC dir correctly to `/opt/cross-pi-gcc/` before running the build. ``` [9/9] Linking CXX executable /home/pi/ofnode/ofApp/bin/ofApp-armv7-Release # From Ubuntu $ scp /home/pi/ofnode/ofApp/bin/ofApp-armv7-Release...
Any idea why the executable can't find its libraries? It seems to be added correctly during the build process. ``` ./ofApp-armv7-Release: error while loading shared libraries: libopenFrameworks.so: cannot open shared...