tce-load -lwi compiletc squashfs-tools
wget -qO- --no-check-certificate https://www.cryptopp.com/cryptopp890.zip | unzip -dlibcryptopp -
cd libcryptopp/
#make includes -mtune=generic -Os -pipe
#messy, "install" only install static libs
make -j8 shared
strip -s libcryptopp.so.*
mkdir -p /tmp/libcryptopplib/usr/local/lib
mv *.so* /tmp/libcryptopplib/usr/local/lib
#https://groups.google.com/g/cryptopp-users/c/OzFrzsYBcw4
#"It was a Debian innovation to name it "libcrypto++"."
mksquashfs /tmp/libcryptopplib/ ../libcryptopp.tcz
#now we make just to get the include
make clean
make -j8 install PREFIX=/tmp/libcryptoppinclude/usr/local
mksquashfs /tmp/libcryptoppinclude/ ../libcryptopp-dev.tcz -e usr/local/lib -e usr/local/share -e usr/local/bin
