[arch-commits] Commit in lm32-elf-gcc/repos/community-x86_64 (3 files)

Filipe Laíns ffy00 at archlinux.org
Sun May 17 23:12:41 UTC 2020


    Date: Sunday, May 17, 2020 @ 23:12:41
  Author: ffy00
Revision: 629123

archrelease: copy trunk to community-x86_64

Added:
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD
    (from rev 629122, lm32-elf-gcc/trunk/PKGBUILD)
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap
    (from rev 629122, lm32-elf-gcc/trunk/PKGBUILD.bootstrap)
Deleted:
  lm32-elf-gcc/repos/community-x86_64/PKGBUILD

--------------------+
 PKGBUILD           |  224 +++++++++++++++++++++++++--------------------------
 PKGBUILD.bootstrap |  111 +++++++++++++++++++++++++
 2 files changed, 223 insertions(+), 112 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-05-17 23:11:28 UTC (rev 629122)
+++ PKGBUILD	2020-05-17 23:12:41 UTC (rev 629123)
@@ -1,112 +0,0 @@
-# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
-# Contributor: Anatol Pomozov <anatol.pomozov at gmail.com>
-# Contributor: Martin Schmölzer <mschmoelzer at gmail.com>
-
-_target=lm32-elf
-pkgname=$_target-gcc
-pkgver=9.3.0
-_islver=0.22
-pkgrel=1
-#_snapshot=8-20180427
-pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 (bare-metal) target'
-arch=(x86_64)
-url='https://gcc.gnu.org/'
-license=(GPL LGPL FDL)
-depends=($_target-binutils zlib libmpc)
-makedepends=(gmp mpfr $_target-newlib)
-optdepends=("$_target-newlib: Standard C library optimized for embedded systems")
-options=(!emptydirs !strip)
-source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
-        #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
-        http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
-sha512sums=('4b9e3639eef6e623747a22c37a904b4750c93b6da77cf3958d5047e9b5ebddb7eebe091cc16ca0a227c0ecbd2bf3b984b221130f269a97ee4cc18f9cf6c444de'
-            'SKIP'
-            'fc2c9796979610dd51143dcefe4f5c989c4354571cc5a1fcc6b932fd41f42a54f6b43adfd289af61be7bd06f3a523fa6a7d7ee56680e32d8036beb4c188fa668')
-validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub at redhat.com>
-
-if [ -n "$_snapshot" ]; then
-  _basedir=gcc-$_snapshot
-else
-  _basedir=gcc-$pkgver
-fi
-
-prepare() {
-  mkdir build-gcc
-
-  cd $_basedir
-
-  # link isl for in-tree builds
-  ln -s ../isl-$_islver isl
-
-  echo $pkgver > gcc/BASE-VER
-
-  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
-  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
-}
-
-build() {
-  cd build-gcc
-
-  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
-
-  "$srcdir"/$_basedir/configure \
-    --target=$_target \
-    --prefix=/usr \
-    --with-sysroot=/usr/$_target \
-    --with-native-system-header-dir=/include \
-    --libexecdir=/usr/lib \
-    --enable-languages=c,c++ \
-    --enable-threads=single \
-    --enable-plugins \
-    --enable-multilib \
-    --enable-libgcc \
-    --disable-libgomp \
-    --disable-libquadmath \
-    --disable-libffi \
-    --disable-libssp \
-    --disable-libmudflap \
-    --disable-decimal-float \
-    --disable-libstdcxx-pch \
-    --disable-nls \
-    --disable-shared \
-    --disable-tls \
-    --with-newlib \
-    --with-gnu-as \
-    --with-gnu-ld \
-    --with-system-zlib \
-    --with-headers=/usr/$_target/include \
-    --with-python-dir=share/gcc-$_target \
-    --with-gmp \
-    --with-mpfr \
-    --with-mpc \
-    --with-isl \
-    --with-libelf \
-    --enable-gnu-indirect-function \
-    --with-pkgversion="Arch Linux Repositories" \
-    --with-bugurl='https://bugs.archlinux.org/'
-
-  make
-}
-
-package() {
-  cd build-gcc
-
-  make DESTDIR="$pkgdir" install -j1
-
-  # strip target binaries
-  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
-       -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 '{}' \;
-
-  # strip host binaries
-  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and \( -executable \) -exec strip '{}' \;
-
-  # Remove files that conflict with host gcc package
-  rm -r "$pkgdir"/usr/share/man/man7
-  rm -r "$pkgdir"/usr/share/info
-  rm "$pkgdir"/usr/lib/libcc1.*
-}
-

Copied: lm32-elf-gcc/repos/community-x86_64/PKGBUILD (from rev 629122, lm32-elf-gcc/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-05-17 23:12:41 UTC (rev 629123)
@@ -0,0 +1,112 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Anatol Pomozov <anatol.pomozov at gmail.com>
+# Contributor: Martin Schmölzer <mschmoelzer at gmail.com>
+
+_target=lm32-elf
+pkgname=$_target-gcc
+pkgver=10.1.0
+_islver=0.22
+pkgrel=1
+#_snapshot=8-20180427
+pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 (bare-metal) target'
+arch=(x86_64)
+url='https://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils zlib libmpc)
+makedepends=(gmp mpfr $_target-newlib)
+optdepends=("$_target-newlib: Standard C library optimized for embedded systems")
+options=(!emptydirs !strip)
+source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
+        #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
+        http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
+sha512sums=('0cb2a74c793face751f42bc580960b00e2bfea785872a0a2155f1f1dbfaa248f9591b67f4322db0f096f8844aca9243bc02732bda106c3b6e43b02bb67eb3096'
+            'SKIP'
+            'fc2c9796979610dd51143dcefe4f5c989c4354571cc5a1fcc6b932fd41f42a54f6b43adfd289af61be7bd06f3a523fa6a7d7ee56680e32d8036beb4c188fa668')
+validpgpkeys=(33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub at redhat.com>
+
+if [ -n "$_snapshot" ]; then
+  _basedir=gcc-$_snapshot
+else
+  _basedir=gcc-$pkgver
+fi
+
+prepare() {
+  mkdir build-gcc
+
+  cd $_basedir
+
+  # link isl for in-tree builds
+  ln -s ../isl-$_islver isl
+
+  echo $pkgver > gcc/BASE-VER
+
+  # hack! - some configure tests for header files using "$CPP $CPPFLAGS"
+  sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
+}
+
+build() {
+  cd build-gcc
+
+  export CFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+  export CXXFLAGS_FOR_TARGET='-g -Os -ffunction-sections -fdata-sections'
+
+  "$srcdir"/$_basedir/configure \
+    --target=$_target \
+    --prefix=/usr \
+    --with-sysroot=/usr/$_target \
+    --with-native-system-header-dir=/include \
+    --libexecdir=/usr/lib \
+    --enable-languages=c,c++ \
+    --enable-threads=single \
+    --enable-plugins \
+    --enable-multilib \
+    --enable-libgcc \
+    --disable-libgomp \
+    --disable-libquadmath \
+    --disable-libffi \
+    --disable-libssp \
+    --disable-libmudflap \
+    --disable-decimal-float \
+    --disable-libstdcxx-pch \
+    --disable-nls \
+    --disable-shared \
+    --disable-tls \
+    --with-newlib \
+    --with-gnu-as \
+    --with-gnu-ld \
+    --with-system-zlib \
+    --with-headers=/usr/$_target/include \
+    --with-python-dir=share/gcc-$_target \
+    --with-gmp \
+    --with-mpfr \
+    --with-mpc \
+    --with-isl \
+    --with-libelf \
+    --enable-gnu-indirect-function \
+    --with-pkgversion="Arch Linux Repositories" \
+    --with-bugurl='https://bugs.archlinux.org/'
+
+  make
+}
+
+package() {
+  cd build-gcc
+
+  make DESTDIR="$pkgdir" install -j1
+
+  # strip target binaries
+  find "$pkgdir"/usr/lib/gcc/$_target/$pkgver "$pkgdir"/usr/$_target/lib \
+       -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 '{}' \;
+
+  # strip host binaries
+  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/$pkgver -type f -and \( -executable \) -exec strip '{}' \;
+
+  # Remove files that conflict with host gcc package
+  rm -r "$pkgdir"/usr/share/man/man7
+  rm -r "$pkgdir"/usr/share/info
+  rm "$pkgdir"/usr/lib/libcc1.*
+}
+

Copied: lm32-elf-gcc/repos/community-x86_64/PKGBUILD.bootstrap (from rev 629122, lm32-elf-gcc/trunk/PKGBUILD.bootstrap)
===================================================================
--- PKGBUILD.bootstrap	                        (rev 0)
+++ PKGBUILD.bootstrap	2020-05-17 23:12:41 UTC (rev 629123)
@@ -0,0 +1,111 @@
+# Maintainer: Filipe Laíns (FFY00) <lains at archlinux.org>
+# Contributor: Anatol Pomozov <anatol.pomozov at gmail.com>
+
+_target=lm32-elf
+pkgname=$_target-gcc-bootstrap
+pkgver=9.3.0
+_islver=0.22
+pkgrel=1
+pkgdesc='The GNU Compiler Collection - cross compiler for LatticeMico32 target - bootstrap version. only used to build initial glibc and compiler'
+arch=(x86_64)
+url='http://gcc.gnu.org/'
+license=(GPL LGPL FDL)
+depends=($_target-binutils libmpc zlib)
+makedepends=(gmp mpfr)
+options=(!emptydirs !strip)
+provides=(${pkgname%-bootstrap})
+conflicts=(${pkgname%-bootstrap})
+source=(https://ftp.gnu.org/gnu/gcc/gcc-$pkgver/gcc-$pkgver.tar.xz{,.sig}
+        #ftp://gcc.gnu.org/pub/gcc/snapshots/$_snapshot/gcc-$_snapshot.tar.xz
+        http://isl.gforge.inria.fr/isl-$_islver.tar.bz2)
+sha512sums=('4b9e3639eef6e623747a22c37a904b4750c93b6da77cf3958d5047e9b5ebddb7eebe091cc16ca0a227c0ecbd2bf3b984b221130f269a97ee4cc18f9cf6c444de'
+            'SKIP'
+            'fc2c9796979610dd51143dcefe4f5c989c4354571cc5a1fcc6b932fd41f42a54f6b43adfd289af61be7bd06f3a523fa6a7d7ee56680e32d8036beb4c188fa668')
+validpgpkeys=(F3691687D867B81B51CE07D9BBE43771487328A9  # bpiotrowski at archlinux.org
+              13975A70E63C361C73AE69EF6EEB81F8981C74C7  # richard.guenther at gmail.com
+              33C235A34C46AA3FFB293709A328C3A2C3C45C06) # Jakub Jelinek <jakub at redhat.com>
+
+
+if [ -n "$_snapshot" ]; then
+  _basedir=gcc-$_snapshot
+else
+  _basedir=gcc-$pkgver
+fi
+
+prepare() {
+  cd $_basedir
+
+  # 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 at -c true@' gcc/Makefile.in
+
+  # 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 -p "$srcdir"/gcc-build
+}
+
+build() {
+  cd gcc-build
+
+  # using -pipe causes spurious test-suite failures
+  # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
+  CFLAGS=${CFLAGS/-pipe/}
+  CXXFLAGS=${CXXFLAGS/-pipe/}
+
+  "$srcdir"/$_basedir/configure \
+      --target=$_target \
+      --prefix=/usr \
+      --libdir=/usr/lib \
+      --libexecdir=/usr/lib \
+      --program-prefix=$_target- \
+      --with-local-prefix=/usr/$_target \
+      --with-build-sysroot=/usr/$_target \
+      --with-sysroot=/usr/$_target \
+      --with-newlib \
+      --without-headers \
+      --disable-shared \
+      --disable-threads \
+      --with-system-zlib \
+      --enable-tls \
+      --enable-languages=c \
+      --disable-libatomic \
+      --disable-libmudflap \
+      --disable-libssp \
+      --disable-libquadmath \
+      --disable-libgomp \
+      --disable-nls \
+      --enable-multilib \
+      --disable-bootstrap \
+      --enable-checking=release
+
+  make inhibit-libc=true all-gcc
+  make inhibit-libc=true all-target-libgcc
+}
+
+package() {
+  cd gcc-build
+
+  make DESTDIR="$pkgdir" inhibit-libc=true install-gcc
+  make DESTDIR="$pkgdir" inhibit-libc=true install-target-libgcc
+
+  # 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 '{}' \;
+
+  # strip host binaries
+  find "$pkgdir"/usr/bin/ "$pkgdir"/usr/lib/gcc/$_target/ -type f -and \( -executable \) -exec strip '{}' \;
+
+  # Remove files that conflict with host gcc package
+  rm -r "$pkgdir"/usr/share/man/man7
+  rm -r "$pkgdir"/usr/share/info
+}
+



More information about the arch-commits mailing list