diff options
author | Michel Dänzer <[email protected]> | 2019-09-06 10:39:19 +0200 |
---|---|---|
committer | Adam Jackson <[email protected]> | 2019-09-11 17:00:43 +0000 |
commit | 57855ff8aafb76222caacd11711577e8a1854799 (patch) | |
tree | aba39742d8ecfeeea112edc7e847cfecc62b9a60 /.gitlab-ci/debian-install.sh | |
parent | 3be7c67bbe3749bd69c39e8f94bfd4f45cfe4dc6 (diff) |
gitlab-ci: Keep g++ from stretch when installing foreign toolchains
Upgrading to a newer g++ causes older LLVM/clang packages to be
removed.
Reviewed-by: Jose Fonseca <[email protected]>
Reviewed-by: Adam Jackson <[email protected]>
Diffstat (limited to '.gitlab-ci/debian-install.sh')
-rw-r--r-- | .gitlab-ci/debian-install.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitlab-ci/debian-install.sh b/.gitlab-ci/debian-install.sh index 9b67f614e4a..7e5b14232e7 100644 --- a/.gitlab-ci/debian-install.sh +++ b/.gitlab-ci/debian-install.sh @@ -92,6 +92,7 @@ for arch in $CROSS_ARCHITECTURES; do libelf-dev:${arch} done apt-get install -y \ + g++/stretch \ dpkg-dev \ gcc-aarch64-linux-gnu \ g++-aarch64-linux-gnu \ |