[BUG] Raspberry Pi OS install fails due to libstdc++6 v11 dependency

Fixes #14
This commit is contained in:
Robin Davies
2022-03-07 03:54:32 -05:00
parent 092cde0830
commit b8d690cea8
9 changed files with 134 additions and 14 deletions
+2 -8
View File
@@ -9,7 +9,7 @@ available through the plugins store) has configured itself, build commands and c
Code.
If you are not using Visual Studio Code, you can configure, build and install PiPedal using CMake build tools. For your convenience,
the following shell scripts have been provided in the root of the project in order to provide convenent CLI build commands.
the following shell scripts have been provided in the root of the project.
./init # Configure the CMake build (required if you change one of the CMakeList.txt files)
@@ -17,13 +17,7 @@ the following shell scripts have been provided in the root of the project in ord
sudo ./install # Deploy all targets
./pkg # Build a .deb file for distribution.
sudo ./makePackage # Build a .deb file for distribution.
If you are using a development environment other than Visual Studio Code, it should be fairly straightforward to figure out how
to incorporate the PiPedal build procedure into your IDE workflow by using the contents of the build shell scripts as a model.
The CMake toolchain can be used to generate build scripts for other build environments as well (e.g. Visual Studio .csproj files, Ant, or Linux
Makefiles); and can be configured to perform cross-compiled builds as well. Consult documentation for CMake for instructions on how to
do that if you're interested. Visual Studio Code also provides quite painless procedures for cross-compiling CMake projects, and mostly-painless
procedures for remote building, and/or debugging. If you need to build for platforms other than Raspbian, or build on platforms other than Rasbian,
you may want to investigate what Visual Studio Code's CMake integration provides in that regard.