List preinstalled packages that need to be removed

TODO: force the compiler to prefer built packages or improve sudo apt-get remove '^libboost.*-dev.*' to iterate through the list of packages needing cleaning
This commit is contained in:
sneurlax 2022-10-04 00:37:33 -05:00
parent 6dc00a6310
commit 8dc7b0a5ce

View file

@ -48,6 +48,16 @@ sudo apt install build-essential debhelper cmake libclang-dev libncurses5-dev cl
sudo apt install unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless sudo apt install unzip automake build-essential file pkg-config git python libtool libtinfo5 cmake openjdk-8-jre-headless
``` ```
Remove pre-installed system libraries for the following packages built by cryptography plugins in the crypto_plugins folder: `boost iconv libjson-dev libsecret openssl sodium unbound zmq`. You can use
```
sudo apt list --installed | grep boost
```
for example to find which pre-installed packages you may need to remove with `sudo apt remove`. Be careful, as some packages (especially boost) are linked to GNOME (GUI) packages: when in doubt, remove `-dev` packages first like with
```
sudo apt-get remove '^libboost.*-dev.*'
```
<!-- TODO: configure compiler to prefer built over system libraries -->
Building plugins for Android Building plugins for Android
``` ```
cd scripts/android/ cd scripts/android/