mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-gcc.git
synced 2024-12-28 04:23:39 +01:00
24 lines
496 B
Bash
Executable file
24 lines
496 B
Bash
Executable file
#! /usr/bin/env bash
|
|
|
|
# Avoid rebuilds of the same version
|
|
[[ ! -d build ]] && exit 0
|
|
|
|
source util.sh
|
|
PREFIX="$1"
|
|
|
|
cd build
|
|
echo "$TAG Installing to local folder..."
|
|
run_quietly giteapc-install.log \
|
|
make install-strip-gcc install-strip-target-libgcc
|
|
cd ..
|
|
|
|
# Symbolic link executables to $PREFIX/bin
|
|
echo "$TAG Symlinking binaries..."
|
|
for x in bin/*; do
|
|
ln -sf "$(pwd)/$x" "$PREFIX/$x"
|
|
done
|
|
|
|
# Cleanup build files
|
|
echo "$TAG Cleaning up build files..."
|
|
rm -rf gcc-*/ gcc-*.tar.*
|
|
rm -rf build/
|