diff options
Diffstat (limited to 'core/binutils')
-rw-r--r-- | core/binutils/PKGBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/binutils/PKGBUILD b/core/binutils/PKGBUILD index f15754809..391389f5c 100644 --- a/core/binutils/PKGBUILD +++ b/core/binutils/PKGBUILD @@ -8,7 +8,7 @@ pkgver=2.22 pkgrel=10 _date=20120323 pkgdesc="A set of programs to assemble and manipulate binary and object files" -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') url="http://www.gnu.org/software/binutils/" license=('GPL') groups=('base-devel') @@ -34,6 +34,7 @@ build() { mkdir binutils-build && cd binutils-build [[ $CARCH == "x86_64" ]] && CONFIGFLAG="--enable-64-bit-bfd --disable-multilib" + [[ $CARCH == "mips64el" ]] && CONFIGFLAG="--disable-multilib --disable-werror" ${srcdir}/binutils/configure --prefix=/usr \ --with-lib-path=/usr/lib:/usr/local/lib \ |