Gitweb links:
...log
http://git.netsurf-browser.org/toolchains.git/shortlog/9c70e18682f7834dee76c80afe69f8ac2760c48b
...commit
http://git.netsurf-browser.org/toolchains.git/commit/9c70e18682f7834dee76c80afe69f8ac2760c48b
...tree
http://git.netsurf-browser.org/toolchains.git/tree/9c70e18682f7834dee76c80afe69f8ac2760c48b
The branch, chris/gcc6-os4 has been updated
via 9c70e18682f7834dee76c80afe69f8ac2760c48b (commit)
via b191914b9fdb5aa2a4e9969ec543b246f79fdc41 (commit)
via b0b09103ebf62303d9aa4756c4c96d99363fe054 (commit)
from ef2c362769b3ca064c357119e7cef0ab51842c19 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commitdiff
http://git.netsurf-browser.org/toolchains.git/commit/?id=9c70e18682f7834dee76c80afe69f8ac2760c48b
commit 9c70e18682f7834dee76c80afe69f8ac2760c48b
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Stop libquadmath complaining about incompatible autotools
diff --git a/ppc-amigaos/Makefile b/ppc-amigaos/Makefile
index d44b1f0..38a424e 100644
--- a/ppc-amigaos/Makefile
+++ b/ppc-amigaos/Makefile
@@ -128,6 +128,7 @@ $(BUILDSTEPS)/srcdir-step3.d: $(BUILDSTEPS)/srcdir-step2.d
touch $(GCC_SRCDIR)/zlib/aclocal.m4 $(GCC_SRCDIR)/zlib/Makefile.in
touch $(GCC_SRCDIR)/libbacktrace/aclocal.m4
$(GCC_SRCDIR)/libbacktrace/Makefile.in
touch $(GCC_SRCDIR)/libcc1/aclocal.m4 $(GCC_SRCDIR)/libcc1/Makefile.in
+ touch $(GCC_SRCDIR)/libquadmath/aclocal.m4
$(GCC_SRCDIR)/libquadmath/Makefile.in
touch $@
$(BUILDSTEPS)/srcdir-step2.d: $(BUILDSTEPS)/srcdir-step1.d
$(SOURCESDIR)/$(UPSTREAM_GMP_TARBALL) $(SOURCESDIR)/$(UPSTREAM_MPFR_TARBALL)
$(SOURCESDIR)/$(UPSTREAM_MPC_TARBALL)
commitdiff
http://git.netsurf-browser.org/toolchains.git/commit/?id=b191914b9fdb5aa2a4e9969ec543b246f79fdc41
commit b191914b9fdb5aa2a4e9969ec543b246f79fdc41
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Latest good library versions
diff --git a/ppc-amigaos/Makefile b/ppc-amigaos/Makefile
index 567764d..d44b1f0 100644
--- a/ppc-amigaos/Makefile
+++ b/ppc-amigaos/Makefile
@@ -10,13 +10,13 @@ UPSTREAM_GMP_VERSION := 6.1.2
UPSTREAM_GMP_TARBALL := gmp-$(UPSTREAM_GMP_VERSION).tar.bz2
UPSTREAM_GMP_URI := http://ftp.gnu.org/gnu/gmp/$(UPSTREAM_GMP_TARBALL)
-UPSTREAM_MPFR_VERSION := 4.0.0
+UPSTREAM_MPFR_VERSION := 3.1.6
UPSTREAM_MPFR_TARBALL := mpfr-$(UPSTREAM_MPFR_VERSION).tar.bz2
UPSTREAM_MPFR_URI :=
http://www.mpfr.org/mpfr-$(UPSTREAM_MPFR_VERSION)/$(UPSTREAM_MPFR_TARBALL)
-UPSTREAM_MPC_VERSION := 1.0.3
+UPSTREAM_MPC_VERSION := 1.0.2
UPSTREAM_MPC_TARBALL := mpc-$(UPSTREAM_MPC_VERSION).tar.gz
-UPSTREAM_MPC_URI :=
http://www.multiprecision.org/mpc/download/$(UPSTREAM_MPC_TARBALL)
+UPSTREAM_MPC_URI := http://ftp.gnu.org/gnu/mpc/$(UPSTREAM_MPC_TARBALL)
UPSTREAM_NDK_TARBALL := SDK_53.29.lha
UPSTREAM_NDK_URI :=
"http://hyperion-entertainment.biz/index.php/downloads?view=download&format=raw&file=82"
commitdiff
http://git.netsurf-browser.org/toolchains.git/commit/?id=b0b09103ebf62303d9aa4756c4c96d99363fe054
commit b0b09103ebf62303d9aa4756c4c96d99363fe054
Author: Chris Young <[email protected]>
Commit: Chris Young <[email protected]>
Workaround for gcc requesting different autotools version
diff --git a/ppc-amigaos/Makefile b/ppc-amigaos/Makefile
index 0cbd4a2..567764d 100644
--- a/ppc-amigaos/Makefile
+++ b/ppc-amigaos/Makefile
@@ -124,6 +124,10 @@ $(BUILDSTEPS)/ndk.d: $(SOURCESDIR)/$(UPSTREAM_NDK_TARBALL)
$(SOURCESDIR)/$(UPSTR
$(BUILDSTEPS)/srcdir-step3.d: $(BUILDSTEPS)/srcdir-step2.d
for p in `ls $(RECIPES)/patches/gcc/*.p` ; do patch -d $(GCC_SRCDIR)
-p0 <$$p ; done
+ touch $(GCC_SRCDIR)/lto-plugin/aclocal.m4
$(GCC_SRCDIR)/lto-plugin/Makefile.in
+ touch $(GCC_SRCDIR)/zlib/aclocal.m4 $(GCC_SRCDIR)/zlib/Makefile.in
+ touch $(GCC_SRCDIR)/libbacktrace/aclocal.m4
$(GCC_SRCDIR)/libbacktrace/Makefile.in
+ touch $(GCC_SRCDIR)/libcc1/aclocal.m4 $(GCC_SRCDIR)/libcc1/Makefile.in
touch $@
$(BUILDSTEPS)/srcdir-step2.d: $(BUILDSTEPS)/srcdir-step1.d
$(SOURCESDIR)/$(UPSTREAM_GMP_TARBALL) $(SOURCESDIR)/$(UPSTREAM_MPFR_TARBALL)
$(SOURCESDIR)/$(UPSTREAM_MPC_TARBALL)
-----------------------------------------------------------------------
Summary of changes:
ppc-amigaos/Makefile | 11 ++++++++---
1 file changed, 8 insertions(+), 3 deletions(-)
diff --git a/ppc-amigaos/Makefile b/ppc-amigaos/Makefile
index 0cbd4a2..38a424e 100644
--- a/ppc-amigaos/Makefile
+++ b/ppc-amigaos/Makefile
@@ -10,13 +10,13 @@ UPSTREAM_GMP_VERSION := 6.1.2
UPSTREAM_GMP_TARBALL := gmp-$(UPSTREAM_GMP_VERSION).tar.bz2
UPSTREAM_GMP_URI := http://ftp.gnu.org/gnu/gmp/$(UPSTREAM_GMP_TARBALL)
-UPSTREAM_MPFR_VERSION := 4.0.0
+UPSTREAM_MPFR_VERSION := 3.1.6
UPSTREAM_MPFR_TARBALL := mpfr-$(UPSTREAM_MPFR_VERSION).tar.bz2
UPSTREAM_MPFR_URI :=
http://www.mpfr.org/mpfr-$(UPSTREAM_MPFR_VERSION)/$(UPSTREAM_MPFR_TARBALL)
-UPSTREAM_MPC_VERSION := 1.0.3
+UPSTREAM_MPC_VERSION := 1.0.2
UPSTREAM_MPC_TARBALL := mpc-$(UPSTREAM_MPC_VERSION).tar.gz
-UPSTREAM_MPC_URI :=
http://www.multiprecision.org/mpc/download/$(UPSTREAM_MPC_TARBALL)
+UPSTREAM_MPC_URI := http://ftp.gnu.org/gnu/mpc/$(UPSTREAM_MPC_TARBALL)
UPSTREAM_NDK_TARBALL := SDK_53.29.lha
UPSTREAM_NDK_URI :=
"http://hyperion-entertainment.biz/index.php/downloads?view=download&format=raw&file=82"
@@ -124,6 +124,11 @@ $(BUILDSTEPS)/ndk.d: $(SOURCESDIR)/$(UPSTREAM_NDK_TARBALL)
$(SOURCESDIR)/$(UPSTR
$(BUILDSTEPS)/srcdir-step3.d: $(BUILDSTEPS)/srcdir-step2.d
for p in `ls $(RECIPES)/patches/gcc/*.p` ; do patch -d $(GCC_SRCDIR)
-p0 <$$p ; done
+ touch $(GCC_SRCDIR)/lto-plugin/aclocal.m4
$(GCC_SRCDIR)/lto-plugin/Makefile.in
+ touch $(GCC_SRCDIR)/zlib/aclocal.m4 $(GCC_SRCDIR)/zlib/Makefile.in
+ touch $(GCC_SRCDIR)/libbacktrace/aclocal.m4
$(GCC_SRCDIR)/libbacktrace/Makefile.in
+ touch $(GCC_SRCDIR)/libcc1/aclocal.m4 $(GCC_SRCDIR)/libcc1/Makefile.in
+ touch $(GCC_SRCDIR)/libquadmath/aclocal.m4
$(GCC_SRCDIR)/libquadmath/Makefile.in
touch $@
$(BUILDSTEPS)/srcdir-step2.d: $(BUILDSTEPS)/srcdir-step1.d
$(SOURCESDIR)/$(UPSTREAM_GMP_TARBALL) $(SOURCESDIR)/$(UPSTREAM_MPFR_TARBALL)
$(SOURCESDIR)/$(UPSTREAM_MPC_TARBALL)
--
Cross-compilation toolchains and environments
_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org