summaryrefslogtreecommitdiff
path: root/.travis/install.sh
blob: b0b05bdcb47ea30cc20ea1a106eb2f46fd9d6d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/bin/bash
set -x

if [[ $TRAVIS_OS_NAME != 'linux' ]]; then
  brew update > brew-update.log 2>&1
  # fix an issue with libtool on travis by reinstalling it
  brew uninstall libtool;
  brew install libtool dejagnu;
else
  sudo apt-get clean # clear the cache
  sudo apt-get update
  case $HOST in
      arm32v7-linux-gnu | aarch64-linux-gnu | ppc64le-linux-gnu | s390x-linux-gnu)
	  sudo apt-get install qemu-user-static
	  ;;
      i386-pc-linux-gnu)
	  sudo apt-get install gcc-multilib g++-multilib;
	  ;;
      moxie-elf)
	  echo 'deb https://repos.moxielogic.org:7114/MoxieLogic moxiedev main' | sudo tee -a /etc/apt/sources.list
	  sudo apt-get clean # clear the cache
	  sudo apt-get update ## -qq
	  sudo apt-get update
	  sudo apt-get install -y --allow-unauthenticated moxielogic-moxie-elf-gcc moxielogic-moxie-elf-gcc-c++ moxielogic-moxie-elf-gcc-libstdc++ moxielogic-moxie-elf-gdb-sim
	  ;;
      i686-w64-mingw32)
	  sudo apt-get install gcc-mingw-w64-i686 binutils-mingw-w64-i686 wine;
	  ;;
  esac
  case $HOST in
      arm32v7-linux-gnu | aarch64-linux-gnu | ppc64le-linux-gnu | s390x-linux-gnu)
          # don't install host tools
          ;;
      *)
	  sudo apt-get install dejagnu texinfo sharutils
	  ;;
  esac
fi