tranter / raspberry-pi-qt-builds

Qt builds for the Raspberry Pi platform
88 stars 28 forks source link

Need to install some depend for qt5.11.1 #3

Open sndnvaps opened 5 years ago

sndnvaps commented 5 years ago

Install libicu57 for rpi 3 we can find libicu57 in http://ftp.de.debian.org/debian/pool/main/i/icu/

Install libicu57 with wget && dpkg wget http://ftp.de.debian.org/debian/pool/main/i/icu/libicu57_57.1-6+deb9u2_armhf.deb dpkg -i libicu57_57.1-6+deb9u2_armhf.deb

sndnvaps commented 5 years ago

Install libpng16.so.16 for rpi 3 https://sourceforge.net/projects/libpng/files/libpng16/ compile it by youself

download libpng-1.6.36.tar.gz

tar -xzf libpng-16.36
cd libpng-1.6.36
./configure
make check
sudo make install
sudo ldconfig
sndnvaps commented 5 years ago

OpenGL dev support

apt-get install libgl1-mesa-dev libglu1-mesa-dev freeglut3-dev