From 8856ce132d1f09af81a9d970a4f152cde0f2dbfd Mon Sep 17 00:00:00 2001 From: Marvin ROGER Date: Mon, 15 Jun 2020 20:15:30 +0200 Subject: [PATCH] [bootstrap] add missing newlib on Ubuntu >= 20.04 (#5100) --- script/bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/bootstrap b/script/bootstrap index 6ffb5d3f2..ac14930a5 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -48,7 +48,7 @@ install_packages_apt() elif [ "$PLATFORM" = "Ubuntu" ] && [ "$(echo "$RELEASE >= $UBUNTU2004" | bc)" -eq 1 ]; then echo "Ubuntu Release >= $UBUNTU2004" # no need to use ppa - sudo apt-get --no-install-recommends install -y gcc-arm-none-eabi gdb-multiarch + sudo apt-get --no-install-recommends install -y gcc-arm-none-eabi gdb-multiarch libnewlib-arm-none-eabi elif ! command -v arm-none-eabi-g++; then # add gcc-arm-embedded ppa sudo add-apt-repository ppa:team-gcc-arm-embedded/ppa -y