blob: 290a050fd6b054f35e23447474b0f3700ae73d87 (
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
|
# Maintainer: Nicolas Reynolds <fauno@kiwwwi.com.ar>
#
_pkgname=gcc
_target=mips64el-unknown-linux-gnu
_sysroot=/usr/lib/cross-${_target}
pkgname=cross-${_target}-gcc1
pkgver=4.5.3
pkgrel=1
pkgdesc="The GNU C Compiler for $_target stage1"
arch=(i686 x86_64)
license=(GPL)
makedepends=("cross-${_target}-binutils")
options=(!strip)
source=(http://ftp.gnu.org/gnu/$_pkgname/$_pkgname-$pkgver/$_pkgname-$pkgver.tar.bz2)
build() {
cd $srcdir
export PATH="${_sysroot}/bin:$PATH"
unset CFLAGS CXXFLAGS
[[ $NOEXTRACT -eq 1 ]] || mkdir build
cd build
# No bindir
[[ $NOEXTRACT -eq 1 ]] || ../$_pkgname-$pkgver/configure \
--prefix=$_sysroot \
--target=$_target \
--disable-bootstrap \
--disable-nls \
--without-headers \
--with-newlib \
--disable-shared \
--disable-threads \
--disable-libssp \
--disable-libgomp \
--disable-libmudflap \
--enable-languages=c \
--without-ppl \
--without-cloog
make
}
package() {
cd $srcdir/build
export PATH="${_sysroot}/bin:$PATH"
make DESTDIR=$pkgdir install
}
md5sums=('8e0b5c12212e185f3e4383106bfa9cc6')
|