diff options
author | David P <megver83@parabola.nu> | 2018-05-04 20:34:33 -0300 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2018-05-04 20:35:01 -0300 |
commit | c12017aaa54fa5eed820343c6df2c8ab122749c4 (patch) | |
tree | 989e3c4f18254803bdb9ddf0fe5c76916d27901a /libre/arm-linux-gnueabi-gcc | |
parent | 88d5eda679c3030071ca52196cf8c1f849be4c68 (diff) | |
download | abslibre-c12017aaa54fa5eed820343c6df2c8ab122749c4.tar.gz abslibre-c12017aaa54fa5eed820343c6df2c8ab122749c4.tar.bz2 abslibre-c12017aaa54fa5eed820343c6df2c8ab122749c4.zip |
upgpkg: arm-linux-gnueabi-gcc, sh-elf-gcc; add xtensa-elf-{gcc,binutils}
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/arm-linux-gnueabi-gcc')
-rw-r--r-- | libre/arm-linux-gnueabi-gcc/PKGBUILD | 78 |
1 files changed, 43 insertions, 35 deletions
diff --git a/libre/arm-linux-gnueabi-gcc/PKGBUILD b/libre/arm-linux-gnueabi-gcc/PKGBUILD index c46d912ec..9d2408563 100644 --- a/libre/arm-linux-gnueabi-gcc/PKGBUILD +++ b/libre/arm-linux-gnueabi-gcc/PKGBUILD @@ -2,27 +2,28 @@ _target=arm-linux-gnueabi pkgname=$_target-gcc -pkgver=7.3.1 -_islver=0.18 +_pkgver=7.3.0 +pkgver=$_pkgver+20180426 +_islver=0.19 pkgrel=1 -_snapshot=7-20180125 -pkgdesc='The GNU Compiler Collection - cross compiler for ARM GNU EABI target' +_snapshot=${pkgver:0:1}-${pkgver##$_pkgver+} +pkgdesc="The GNU Compiler Collection - cross compiler for ARM target" arch=('x86_64' 'i686' 'armv7h') url='http://gcc.gnu.org/' license=(GPL LGPL FDL) depends=($_target-binutils libmpc zlib) makedepends=(gmp mpfr) options=(!emptydirs !strip) -source=(#https://gcc.gnu.org/pub/gcc/releases/gcc-$pkgver/gcc-$pkgver.tar.bz2 +source=(#https://gcc.gnu.org/pub/gcc/releases/gcc-$_pkgver/gcc-$_pkgver.tar.bz2 https://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz http://isl.gforge.inria.fr/isl-$_islver.tar.bz2) -sha512sums=('87558e9cf6d44df0c45e2bde8ef4d4a8b77716382ae0cd787b80bb4650a0a033d2b815a3b3eaa1798a16d66afca0d38c83a268bed0b26bdf013a483f04923298' - '85d0b40f4dbf14cb99d17aa07048cdcab2dc3eb527d2fbb1e84c41b2de5f351025370e57448b63b2b8a8cf8a0843a089c3263f9baee1542d5c2e1cb37ed39d94') +sha512sums=('7b2c99e12b654b70d630499b00518121276b55673002f3eab02ffa79b24160170bcf0cac4aeee0c07101377fb48adb882d9c4a24ea479305aa10b8c7ab1642d7' + '08f4db964d9e02ec8aa9779378ed76e0ddf1d56f81f87664dbf787555ce496cdc87e836f8a51ae137f45e648c604870cce07ee45919eafb549e404afb8f27083') if [ -n "$_snapshot" ]; then _basedir=gcc-$_snapshot else - _basedir=gcc-$pkgver + _basedir=gcc-$_pkgver fi prepare() { @@ -31,20 +32,16 @@ prepare() { # link isl for in-tree builds ln -sf ../isl-$_islver isl - echo $pkgver > gcc/BASE-VER - - # Do not run fixincludes - sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in + echo $_pkgver > gcc/BASE-VER # hack! - some configure tests for header files using "$CPP $CPPFLAGS" sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" "$srcdir"/$_basedir/{libiberty,gcc}/configure - rm -rf $srcdir/gcc-build - mkdir $srcdir/gcc-build + mkdir $srcdir/build-gcc } build() { - cd gcc-build + cd build-gcc # using -pipe causes spurious test-suite failures # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565 @@ -52,31 +49,42 @@ build() { CXXFLAGS=${CXXFLAGS/-pipe/} $srcdir/$_basedir/configure \ - --prefix=/usr \ - --libdir=/usr/lib --libexecdir=/usr/lib \ - --mandir=/usr/share/man \ - --with-bugurl=https://labs.parabola.nu/ \ - --enable-languages=c,c++ \ - --enable-shared --enable-threads=posix --enable-libmpx \ - --with-system-zlib --with-isl --enable-__cxa_atexit \ - --disable-libunwind-exceptions --enable-clocale=gnu \ - --disable-libstdcxx-pch --disable-libssp \ - --enable-gnu-unique-object --enable-linker-build-id \ - --enable-lto --enable-plugin --enable-install-libiberty \ - --with-linker-hash-style=gnu --enable-gnu-indirect-function \ - --disable-multilib --disable-werror \ - --enable-checking=release --disable-nls \ - --target=$_target --host=$CHOST --build=$CHOST - - make ${MAKEFLAGS} all-gcc + --target=$_target \ + --prefix=/usr \ + --libexecdir=/usr/lib \ + --enable-languages=c,c++ \ + --enable-plugins \ + --enable-shared \ + --disable-decimal-float \ + --disable-libffi \ + --disable-libgomp \ + --disable-libmudflap \ + --disable-libquadmath \ + --disable-libssp \ + --disable-libstdcxx-pch \ + --disable-nls \ + --disable-threads \ + --disable-tls \ + --disable-multilib \ + --with-gnu-as \ + --with-gnu-ld \ + --with-system-zlib \ + --with-gmp \ + --with-mpfr \ + --with-mpc \ + --with-isl \ + --with-libelf \ + --enable-gnu-indirect-function \ + --with-pkgversion='Parabola Repository' \ + --with-bugurl='https://labs.parabola.nu/' + + make $MAKEFLAGS all-gcc } package() { - cd gcc-build + cd build-gcc make DESTDIR="$pkgdir" install-gcc - - libtool --finish $pkgdir/usr/lib/gcc/$_target/$pkgver # strip target binaries find "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -name \*.a -or -name \*.o \) -exec $_target-objcopy -R .comment -R .note -R .debug_info -R .debug_aranges -R .debug_pubnames -R .debug_pubtypes -R .debug_abbrev -R .debug_line -R .debug_str -R .debug_ranges -R .debug_loc '{}' \; |