You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

9 lines
248 B

  1. if [ $(uname) == "Darwin" ]; then
  2. echo "MacOS detected"
  3. brew install make cmake avrdude avr-libc
  4. else
  5. echo "Debian based linux detected"
  6. sudo apt-get update
  7. sudo apt-get install gcc-avr binutils-avr avr-libc cmake make gdb-avr avrdude
  8. fi