summaryrefslogtreecommitdiff
path: root/cross
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2019-09-23 18:56:10 -0300
committerDavid P <megver83@parabola.nu>2019-09-23 18:56:10 -0300
commita71c60d4af3a1d81261150983c44ce3cde5f0e87 (patch)
treed9f1c23d26c5ab01c092fb097d456fc8f21915f8 /cross
parent62e5dc668bb8797e555b3230287a0f07ae9d80a8 (diff)
downloadabslibre-a71c60d4af3a1d81261150983c44ce3cde5f0e87.tar.gz
abslibre-a71c60d4af3a1d81261150983c44ce3cde5f0e87.tar.bz2
abslibre-a71c60d4af3a1d81261150983c44ce3cde5f0e87.zip
cross-newlib: use https
[From Arch] FS#63320: use configuration flags that match official toolchain Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'cross')
-rw-r--r--cross/cross-newlib/PKGBUILD10
1 files changed, 6 insertions, 4 deletions
diff --git a/cross/cross-newlib/PKGBUILD b/cross/cross-newlib/PKGBUILD
index 3cdb570b9..cf0020c51 100644
--- a/cross/cross-newlib/PKGBUILD
+++ b/cross/cross-newlib/PKGBUILD
@@ -102,7 +102,7 @@ url='http://www.sourceware.org/newlib/'
license=(BSD)
makedepends=($_target-gcc)
options=(!emptydirs !strip)
-source=(ftp://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
+source=(https://sourceware.org/pub/newlib/newlib-$_upstream_ver.tar.gz)
sha256sums=('fb4fa1cc21e9060719208300a61420e4089d6de6ef59cf533b57fe74801d102a')
build() {
@@ -113,10 +113,12 @@ build() {
../newlib-$_upstream_ver/configure \
--target=$_target \
--prefix=/usr \
- --disable-newlib-supplied-syscalls \
- --disable-nls \
--enable-newlib-io-long-long \
- --enable-newlib-register-fini
+ --enable-newlib-io-c99-formats \
+ --enable-newlib-register-fini \
+ --enable-newlib-retargetable-locking \
+ --disable-newlib-supplied-syscalls \
+ --disable-nls
make
}