2019-12-13 09:48:00 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
################################################################################
|
|
|
|
|
## File: gcc.sh
|
|
|
|
|
## Desc: Installs GNU C++
|
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
|
|
# Source the helpers for use with the script
|
|
|
|
|
source $HELPER_SCRIPTS/document.sh
|
|
|
|
|
|
2020-02-04 17:14:16 +03:00
|
|
|
function InstallGcc {
|
|
|
|
|
version=$1
|
|
|
|
|
|
|
|
|
|
echo "Installing $version..."
|
|
|
|
|
apt-get install $version -y
|
|
|
|
|
|
|
|
|
|
# Run tests to determine that the software installed as expected
|
|
|
|
|
echo "Testing to make sure that script performed as expected, and basic scenarios work"
|
|
|
|
|
if ! command -v $version; then
|
|
|
|
|
echo "$version was not installed"
|
|
|
|
|
exit 1
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Document what was added to the image
|
|
|
|
|
echo "Documenting $version..."
|
|
|
|
|
DocumentInstalledItem "GNU C++ $($version --version | head -n 1 | cut -d ' ' -f 4)"
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-13 09:48:00 -05:00
|
|
|
# Install GNU C++ compiler
|
2020-02-05 14:08:16 +03:00
|
|
|
add-apt-repository ppa:ubuntu-toolchain-r/test -y
|
2019-12-13 09:48:00 -05:00
|
|
|
apt-get update -y
|
|
|
|
|
|
2020-02-04 17:14:16 +03:00
|
|
|
versions=(
|
|
|
|
|
"g++-7"
|
|
|
|
|
"g++-8"
|
|
|
|
|
"g++-9"
|
|
|
|
|
)
|
2019-12-13 09:48:00 -05:00
|
|
|
|
2020-02-04 17:14:16 +03:00
|
|
|
for version in ${versions[*]}
|
|
|
|
|
do
|
|
|
|
|
InstallGcc $version
|
|
|
|
|
done
|