mirror of
https://github.com/pygos/build.git
synced 2024-11-23 03:29:46 +01:00
b61bfcc519
- Upgrade to newer binutils version - Upgrade to newer gcc version - Upgrade to newer mpc version - Upgrade to newer mpfr version - Upgrade musl package to perfere HTTPS download Signed-off-by: David Oberhollenzer <david.oberhollenzer@tele2.at>
26 lines
475 B
Text
Executable file
26 lines
475 B
Text
Executable file
VERSION="2.30"
|
|
SRCDIR="binutils-$VERSION"
|
|
TARBALL="binutils-$VERSION.tar.xz"
|
|
URL="http://ftp.gnu.org/gnu/binutils"
|
|
SHA256SUM="6e46b8aeae2f727a36f0bd9505e405768a72218f1796f0d09757d45209871ae6"
|
|
DEPENDS=""
|
|
|
|
prepare() {
|
|
return
|
|
}
|
|
|
|
build() {
|
|
local INPUT="$1"
|
|
local OUTPUT="$2"
|
|
|
|
$INPUT/configure --prefix="$TCDIR" --target="$TARGET" \
|
|
--with-sysroot="$TCDIR/$TARGET" \
|
|
--disable-nls --disable-multilib
|
|
|
|
make configure-host
|
|
make -j $NUMJOBS
|
|
}
|
|
|
|
deploy() {
|
|
make install
|
|
}
|