Changeset 415 for ssp_armv6_m_gcc


Ignore:
Timestamp:
Mar 13, 2020, 4:21:32 PM (4 years ago)
Author:
nmir-saito
Message:

Add installation of gcc tools

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ssp_armv6_m_gcc/branches/rubycfg/setup_tools.sh

    r414 r415  
    22set -eu
    33
    4 # nothing to do
     4# Variables
     5GCC_COMMAND=arm-none-eabi-gcc
     6
     7: "install $GCC_COMMAND" && {
     8  if type $GCC_COMMAND > /dev/null 2>&1; then
     9    echo "$GCC_COMMAND already exists. skip install."
     10  else
     11    sudo apt-get update
     12    sudo apt-get install -y gcc-arm-none-eabi
     13  fi
     14}
    515
    616exit 0
Note: See TracChangeset for help on using the changeset viewer.