blob: becc02cfe2e70000335e2d8938c923698825b58d (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# $Id: PKGBUILD 60837 2011-12-18 22:34:22Z spupykin $
# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com>
_cross=mips64el-unknown-linux-gnu
pkgname=${_cross}-gcc-base
pkgver=4.6.2
pkgrel=1
pkgdesc="The GNU Compiler Collection"
arch=(i686 x86_64)
license=('GPL' 'LGPL')
url="http://gcc.gnu.org"
depends=("${_cross}-binutils" 'libmpc' 'libelf')
options=(!libtool !emptydirs zipman docs !strip)
source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-core-${pkgver}.tar.bz2)
md5sums=('780f614ab18c7a9066dec6387d7490b2')
build() {
cd $srcdir/gcc-$pkgver
export CFLAGS="-O2 -pipe"
export CXXFLAGS="-O2 -pipe"
[ $NOEXTRACT -eq 1 ] || rm -rf build
mkdir build
cd build
[ $NOEXTRACT -eq 1 ] || ../configure --prefix=/usr \
--target=${_cross} \
--host=${CHOST} \
--build=${CHOST} \
--enable-shared --disable-nls --enable-languages=c --enable-multilib \
--with-local-prefix=/usr/lib/${_cross} \
--with-as=/usr/bin/${_cross}-as --with-ld=/usr/bin/${_cross}-ld \
--with-sysroot=/usr/$CHOST/${_cross}
make all-gcc all-target-libgcc
}
package() {
cd $srcdir/gcc-$pkgver/build
export CFLAGS="-O2 -pipe"
export CXXFLAGS="-O2 -pipe"
make DESTDIR=$pkgdir install-gcc install-target-libgcc
rm -f $pkgdir/usr/share/man/man7/fsf-funding.7*
rm -f $pkgdir/usr/share/man/man7/gfdl.7*
rm -f $pkgdir/usr/share/man/man7/gpl.7*
rm -rf $pkgdir/usr/share/info
cp -r $pkgdir/usr/libexec/* $pkgdir/usr/lib/
rm -rf $pkgdir/usr/libexec
# strip it manually
strip $pkgdir/usr/bin/* 2>/dev/null || true
find $pkgdir/usr/lib -type f -exec ${_cross}-strip {} \; 2>/dev/null || true
}
|