minix/external/gpl3/gcc/fetch.sh
Thomas Veerman 18a5822eff Partially import gcc and binutils
They are used as build tools for cross compilation. This import does
not include the full distribution. Rather, it sports a shell script
that will download and patch the distribution when compiled from
/usr/src/tools (yet to be committed). This part of the source tree is
only necessary for cross compilation. It's not used or compiled for
native builds.
2012-06-18 10:54:16 +00:00

25 lines
664 B
Bash
Executable file

#!/bin/sh
# Make sure we're in our directory (i.e., where this shell script is)
echo $0
cd `dirname $0`
# Fetch sources if not available
if [ ! -d dist ];
then
if [ ! -f gcc-4.4.3.tar.bz2 ];
then
wget ftp://ftp.gwdg.de/pub/misc/gcc/releases/gcc-4.4.3/gcc-4.4.3.tar.bz2
fi
tar -xf gcc-4.4.3.tar.bz2 && \
mv gcc-4.4.3 dist && \
cd dist && \
cat ../../../../tools/gcc/patches/* | patch -p0 && \
cp ../../../../tools/gcc/files/minix.h gcc/config/ && \
cp ../../../../tools/gcc/files/minix-spec.h gcc/config/ && \
cp ../../../../tools/gcc/files/i386-minix.h gcc/config/i386/minix.h && \
cp ../../../../tools/gcc/files/gcov-minix-fs-wrapper.h gcc/
fi