2020-08-19 02:43:40 +02:00
|
|
|
#!/bin/bash
|
2020-08-17 18:49:59 +02:00
|
|
|
|
2021-07-27 13:17:51 +02:00
|
|
|
if [[ "$UID" -eq "0" ]]; then
|
|
|
|
SUDO=""
|
|
|
|
else
|
|
|
|
SUDO=sudo
|
|
|
|
fi
|
|
|
|
|
2021-08-14 11:35:23 +02:00
|
|
|
uname=`uname`
|
|
|
|
if [[ "$uname" == "Darwin" ]]; then
|
2021-08-22 23:55:26 +02:00
|
|
|
echo "Downloading gcc/binutils for macOS"
|
|
|
|
curl -L "https://github.com/pmret/gcc-papermario/releases/download/master/mac.tar.gz" | tar zx -C tools/build/cc/gcc
|
|
|
|
curl -L "https://github.com/pmret/binutils-papermario/releases/download/master/mac.tar.gz" | tar zx -C tools/build/cc/gcc
|
|
|
|
|
2021-09-25 09:31:44 +02:00
|
|
|
echo "Downloading IDO 5.3 for macOS"
|
|
|
|
curl -L "https://github.com/ethteck/ido-static-recomp/releases/download/per-function/ido-5.3-recomp-macos-latest.tar.gz" | tar zx -C tools/build/cc/ido5.3
|
|
|
|
|
2021-08-14 11:35:23 +02:00
|
|
|
echo "Installing packages for macOS"
|
|
|
|
|
|
|
|
if ! command -v brew >/dev/null 2>&1; then
|
|
|
|
# Install Homebrew
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install packages
|
2021-10-22 16:01:27 +02:00
|
|
|
brew install md5sha1sum ninja gcc nanaian/brew/mips-linux-gnu-binutils wine || exit 1
|
2021-08-14 11:35:23 +02:00
|
|
|
python3 -m pip install -U -r requirements.txt || exit 1
|
|
|
|
|
|
|
|
if [[ $1 == "--extra" ]]; then
|
|
|
|
echo "Installing extra"
|
|
|
|
python3 -m pip install -U -r requirements_extra.txt || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Done"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-08-22 23:55:26 +02:00
|
|
|
echo "Downloading gcc/binutils for Linux"
|
|
|
|
curl -L "https://github.com/pmret/gcc-papermario/releases/download/master/linux.tar.gz" | tar zx -C tools/build/cc/gcc
|
|
|
|
curl -L "https://github.com/pmret/binutils-papermario/releases/download/master/linux.tar.gz" | tar zx -C tools/build/cc/gcc
|
|
|
|
|
2021-09-25 09:31:44 +02:00
|
|
|
echo "Downloading IDO 5.3 for Linux"
|
|
|
|
curl -L "https://github.com/ethteck/ido-static-recomp/releases/download/per-function/ido-5.3-recomp-ubuntu-latest.tar.gz" | tar zx -C tools/build/cc/ido5.3
|
|
|
|
|
2021-10-22 16:01:27 +02:00
|
|
|
echo "Downloading KMC GCC wrapper for Linux"
|
|
|
|
curl -L "https://github.com/Mr-Wiseguy/kmc-gcc-wrapper/releases/download/master/kmc-gcc-wrapper-ubuntu-latest.tar.gz" | tar zx -C tools/build/cc/kmcgcc
|
|
|
|
|
2021-02-22 04:34:17 +01:00
|
|
|
# Debian and derivatives (apt)
|
2021-08-24 21:16:10 +02:00
|
|
|
if cat /etc/os-release | grep -E 'ID=debian|ID_LIKE=(.*)debian' &> /dev/null; then
|
2021-02-22 04:34:17 +01:00
|
|
|
echo "Installing packages for Debian or derivative (apt)"
|
2020-08-17 18:49:59 +02:00
|
|
|
|
2021-03-27 14:37:36 +01:00
|
|
|
# Add i386 arch for wine32
|
2021-03-28 06:56:05 +02:00
|
|
|
# sudo dpkg --add-architecture i386
|
2021-10-24 04:58:53 +02:00
|
|
|
${SUDO} apt install -y git python3 python3-pip python3-setuptools build-essential binutils-mips-linux-gnu zlib1g-dev libyaml-dev ninja-build cpp-mips-linux-gnu || exit 1
|
2020-10-15 09:02:52 +02:00
|
|
|
python3 -m pip install -U -r requirements.txt
|
2020-08-17 18:49:59 +02:00
|
|
|
|
|
|
|
if [[ $1 == "--extra" ]]; then
|
|
|
|
echo "Installing extra"
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} apt install -y clang-tidy astyle doxygen || exit 1
|
2020-10-15 09:02:52 +02:00
|
|
|
python3 -m pip install -U -r requirements_extra.txt || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Done"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2021-02-22 04:34:17 +01:00
|
|
|
# Arch Linux and derivatives (pacman)
|
|
|
|
if cat /etc/os-release | grep -E 'ID=arch|ID_LIKE=arch' &> /dev/null; then
|
|
|
|
echo "Installing packages for Arch Linux or derivative (pacman)"
|
2020-08-17 18:49:59 +02:00
|
|
|
|
|
|
|
# Upgrade existing packages (note: no --noconfirm)
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} pacman -Syu || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
|
2021-03-28 06:46:49 +02:00
|
|
|
# Install dependencies
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} pacman -S --noconfirm --needed git python python-pip python-setuptools base-devel zlib libyaml ninja || exit 1
|
2020-10-15 09:02:52 +02:00
|
|
|
python3 -m pip install -U -r requirements.txt
|
2020-08-17 18:49:59 +02:00
|
|
|
|
|
|
|
# Install binutils if required
|
|
|
|
if ! command -v mips-linux-gnu-ar &> /dev/null; then
|
|
|
|
PKG="mips-linux-gnu-binutils"
|
|
|
|
if command -v aura &> /dev/null; then
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} aura -A --noconfirm $PKG || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
elif command -v yay &> /dev/null; then
|
|
|
|
yay -S --noconfirm $PKG || exit 1
|
|
|
|
elif command -v yaourt &> /dev/null; then
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} yaourt -S --noconfirm $PKG || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
else
|
|
|
|
echo "AUR manager not found, installing $PKG without one"
|
|
|
|
|
|
|
|
git clone "https://aur.archlinux.org/$PKG.git" || exit 1
|
|
|
|
cd $PKG
|
2020-08-17 19:09:42 +02:00
|
|
|
makepkg -si || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
cd ..
|
|
|
|
rm -rf $PKG
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $1 == "--extra" ]]; then
|
|
|
|
echo "Installing extra"
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} pacman -S --noconfirm --needed clang astyle doxygen || exit 1
|
2020-10-15 09:02:52 +02:00
|
|
|
python3 -m pip install -U -r requirements_extra.txt || exit 1
|
2020-08-17 18:49:59 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Done"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
2020-10-20 06:07:04 +02:00
|
|
|
# openSUSE (zypper)
|
2020-11-24 21:45:37 +01:00
|
|
|
if cat /etc/os-release | grep ID=opensuse &> /dev/null; then
|
2020-10-20 06:07:04 +02:00
|
|
|
echo "Installing packages for openSUSE (zypper)"
|
|
|
|
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} zypper -n install git python3 python3-devel python3-pip python3-setuptools gcc gcc-c++ glibc-devel make cross-mips-binutils zlib-devel libyaml-devel ninja
|
2020-10-20 06:07:04 +02:00
|
|
|
|
|
|
|
# Link the openSUSE locations for binutils tools to their usual GNU locations
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-addr2line /usr/bin/mips-linux-gnu-addr2line
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-ar /usr/bin/mips-linux-gnu-ar
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-as /usr/bin/mips-linux-gnu-as
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-elfedit /usr/bin/mips-linux-gnu-elfedit
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-gprof /usr/bin/mips-linux-gnu-gprof
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-ld /usr/bin/mips-linux-gnu-ld
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-ld.bfd /usr/bin/mips-linux-gnu-ld.bfd
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-nm /usr/bin/mips-linux-gnu-nm
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-objcopy /usr/bin/mips-linux-gnu-objcopy
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-objdump /usr/bin/mips-linux-gnu-objdump
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-ranlib /usr/bin/mips-linux-gnu-ranlib
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-readelf /usr/bin/mips-linux-gnu-readelf
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-size /usr/bin/mips-linux-gnu-size
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-strings /usr/bin/mips-linux-gnu-strings
|
|
|
|
${SUDO} ln -s /usr/bin/mips-suse-linux-strip /usr/bin/mips-linux-gnu-strip
|
2020-10-20 06:07:04 +02:00
|
|
|
|
|
|
|
python3 -m pip install -U -r requirements.txt
|
|
|
|
|
|
|
|
if [[ $1 == "--extra" ]]; then
|
|
|
|
echo "Installing extra"
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} zypper -n install clang astyle doxygen || exit 1
|
2020-10-20 06:07:04 +02:00
|
|
|
python3 -m pip install -U -r requirements_extra.txt || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Done"
|
|
|
|
exit
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Alpine Linux (apk)
|
2020-11-24 21:45:37 +01:00
|
|
|
if cat /etc/os-release | grep ID=alpine &> /dev/null; then
|
2020-10-20 06:07:04 +02:00
|
|
|
echo "Installing packages for Alpine Linux (apk)"
|
|
|
|
|
|
|
|
# If the edge/community repo isn't present, it needs to be for astyle
|
|
|
|
if ! grep -q "edge/community" /etc/apk/repositories; then
|
|
|
|
echo "http://dl-cdn.alpinelinux.org/alpine/edge/community" >> /etc/apk/repositories
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Install dependencies
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} apk add --no-cache bash wget git python3 python3-dev py3-pip build-base zlib-dev yaml-dev ninja
|
2020-10-20 06:07:04 +02:00
|
|
|
python3 -m pip install -U -r requirements.txt
|
|
|
|
|
|
|
|
# Install binutils if required
|
|
|
|
if ! command -v mips-linux-gnu-ar &> /dev/null; then
|
|
|
|
PKG="mips-linux-gnu-binutils"
|
|
|
|
|
|
|
|
RETURNDIR="$(pwd)"
|
|
|
|
cd "$(mktemp -d)"
|
|
|
|
|
|
|
|
wget ftp://ftp.gnu.org/gnu/binutils/binutils-2.35.tar.bz2
|
|
|
|
tar -xf binutils-2.35.tar.bz2
|
|
|
|
|
|
|
|
cd binutils-2.35
|
|
|
|
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" libiberty/configure
|
|
|
|
./configure --target=mips-linux-gnu \
|
|
|
|
--with-sysroot=/usr/mips-linux-gnu \
|
|
|
|
--prefix=/usr \
|
|
|
|
--disable-multilib \
|
|
|
|
--with-gnu-as \
|
|
|
|
--with-gnu-ld \
|
|
|
|
--disable-nls \
|
|
|
|
--enable-ld=default \
|
|
|
|
--enable-plugins \
|
|
|
|
--enable-deterministic-archives \
|
|
|
|
--disable-werror
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} make
|
|
|
|
${SUDO} make install
|
2020-10-20 06:07:04 +02:00
|
|
|
|
|
|
|
cd ..
|
|
|
|
# delete temp directory we made
|
|
|
|
rm -rf "$(pwd)"
|
|
|
|
# go back to old dir
|
|
|
|
cd "${RETURNDIR}"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ $1 == "--extra" ]]; then
|
|
|
|
echo "Installing extra"
|
2021-07-27 13:17:51 +02:00
|
|
|
${SUDO} apk add --no-cache clang-extra-tools astyle doxygen || exit 1
|
2020-10-20 06:07:04 +02:00
|
|
|
python3 -m pip install -U -r requirements_extra.txt || exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
echo "Done"
|
|
|
|
exit
|
|
|
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2021-02-22 04:34:17 +01:00
|
|
|
echo "The following distros (and their derivatives) are supported by install.sh:"
|
|
|
|
echo "- Debian/Ubuntu (apt)"
|
2020-10-20 06:07:04 +02:00
|
|
|
echo "- Arch Linux (pacman)"
|
|
|
|
echo "- openSUSE (zypper)"
|
|
|
|
echo "- Alpine Linux (apk)"
|
2020-08-17 18:49:59 +02:00
|
|
|
echo "Please consider contributing and adding an installation script for your distro."
|
|
|
|
exit 1
|