diff options
author | David P <megver83@parabola.nu> | 2020-06-16 15:51:02 -0400 |
---|---|---|
committer | David P <megver83@parabola.nu> | 2020-06-16 15:51:02 -0400 |
commit | 39f8f90b08589d919da37661c694a8406f317db8 (patch) | |
tree | 53c46dd4e4d0c42a6697b44059b59da48f29a9cc /libre/riscv32-elf-newlib/PKGBUILD | |
parent | a1c34ae9dca91df484dc14b5361ccb40b1289c30 (diff) | |
download | abslibre-39f8f90b08589d919da37661c694a8406f317db8.tar.gz abslibre-39f8f90b08589d919da37661c694a8406f317db8.tar.bz2 abslibre-39f8f90b08589d919da37661c694a8406f317db8.zip |
remove toolchains, now they're in Arch
arm-linux-gnueabihf is not in Arch, however, but it's not built in [libre], and the PKGBUILD has been here doing nothing during many months
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'libre/riscv32-elf-newlib/PKGBUILD')
-rw-r--r-- | libre/riscv32-elf-newlib/PKGBUILD | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/libre/riscv32-elf-newlib/PKGBUILD b/libre/riscv32-elf-newlib/PKGBUILD deleted file mode 100644 index c05277391..000000000 --- a/libre/riscv32-elf-newlib/PKGBUILD +++ /dev/null @@ -1,41 +0,0 @@ -# Maintainer: David P. <megver83@parabola.nu> - -_target=riscv32-elf -pkgname=$_target-newlib -pkgver=3.1.0 -pkgrel=2 -_upstream_ver=$pkgver -pkgdesc='A C standard library implementation intended for use on embedded systems (RISC V 32)' -arch=(any) -url='http://www.sourceware.org/newlib/' -license=(BSD) -makedepends=($_target-gcc-initial) -options=(!emptydirs !strip) -source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz) -sha256sums=('fb4fa1cc21e9060719208300a61420e4089d6de6ef59cf533b57fe74801d102a') - -build() { - mkdir newlib-build - - export CFLAGS_FOR_TARGET='-g -O2 -ffunction-sections -fdata-sections' - cd "$srcdir"/newlib-build - ../newlib-$_upstream_ver/configure \ - --target=$_target \ - --prefix=/usr \ - --disable-newlib-supplied-syscalls \ - --disable-nls \ - --enable-newlib-io-long-long \ - --enable-newlib-register-fini - make - -} - -package() { - cd "$srcdir"/newlib-build - make DESTDIR="$pkgdir" install -j1 - - find "$pkgdir"/usr/$_target/lib \( -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 '{}' \; - - install -d "$pkgdir"/usr/share/licenses/$pkgname/ - install -m644 -t "$pkgdir"/usr/share/licenses/$pkgname/ "$srcdir"/newlib-$_upstream_ver/COPYING* -} |