Browse Source

Make linux_install.sh work with openSUSE Leap 15.0 (#4218)

pull/4285/head 0.6.159
Daniel Shields 5 years ago
committed by Drashna Jaelre
parent
commit
1fa6c1d818
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      util/linux_install.sh

+ 5
- 1
util/linux_install.sh View File

@ -96,9 +96,13 @@ elif grep ID /etc/os-release | grep -q gentoo; then
fi
elif grep ID /etc/os-release | grep -qE "opensuse|tumbleweed"; then
CROSS_AVR_GCC=cross-avr-gcc8
if grep ID /etc/os-release | grep -q "15.0"; then
CROSS_AVR_GCC=cross-avr-gcc7
fi
sudo zypper install \
avr-libc \
cross-avr-gcc8 \
$CROSS_AVR_GCC \
cross-avr-binutils \
cross-arm-none-newlib-devel \
cross-arm-binutils cross-arm-none-newlib-devel \


Loading…
Cancel
Save