Gitweb links:

...log 
http://git.netsurf-browser.org/toolchains.git/shortlog/1da3fb300f36767f9e90c03351973a3c29e9992f
...commit 
http://git.netsurf-browser.org/toolchains.git/commit/1da3fb300f36767f9e90c03351973a3c29e9992f
...tree 
http://git.netsurf-browser.org/toolchains.git/tree/1da3fb300f36767f9e90c03351973a3c29e9992f

The branch, master has been updated
       via  1da3fb300f36767f9e90c03351973a3c29e9992f (commit)
      from  1a65c5f31172353675437d3ddc8146c2b112f20a (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/commitdiff/1da3fb300f36767f9e90c03351973a3c29e9992f
commit 1da3fb300f36767f9e90c03351973a3c29e9992f
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    fix mint toolchain build

diff --git a/m68k-atari-mint/Makefile b/m68k-atari-mint/Makefile
index fd7ff5c..eb0f3c4 100644
--- a/m68k-atari-mint/Makefile
+++ b/m68k-atari-mint/Makefile
@@ -41,6 +41,11 @@ UPSTREAM_GEMLIB_VERSION := CVS-20100223
 UPSTREAM_GEMLIB_TARBALL := gemlib-$(UPSTREAM_GEMLIB_VERSION).tar.bz2
 UPSTREAM_GEMLIB_URI := 
http://vincent.riviere.free.fr/soft/m68k-atari-mint/archives/$(UPSTREAM_GEMLIB_TARBALL)
 
+GCC_AUTOCONF := autoconf2.64
+GCC_AUTOHEADER := autoheader2.64
+GCC_AUTORECONF := autoreconf2.64
+GCC_AUTOM4TE := autom4te2.64
+
 TOP := $(CURDIR)
 RECIPES := $(TOP)/recipes
 SOURCESDIR := $(TOP)/sources
@@ -122,7 +127,7 @@ $(BUILDSTEPS)/mintlib.d: $(BUILDSTEPS)/bootstrap-compiler.d 
$(SOURCESDIR)/$(UPST
 # Rules to build and install the bootstrap compiler
 ###
 
-GCC_ENV_PARAMS := AUTOCONF=autoconf2.64 AUTOHEADER=autoheader2.64 
AUTORECONF=autoreconf2.64 AUTOM4TE=autom4te2.64 PATH="$(PREFIX)/bin:$(PATH)"
+GCC_ENV_PARAMS := AUTOCONF=$(GCC_AUTOCONF) AUTOHEADER=$(GCC_AUTOHEADER) 
AUTOM4TE=$(GCC_AUTOM4TE) PATH="$(PREFIX)/bin:$(PATH)"
 
 $(BUILDSTEPS)/bootstrap-compiler.d: $(BUILDSTEPS)/srcdir-step3.d 
$(BUILDSTEPS)/binutils.d $(BUILDSTEPS)/mintbin.d
        cd $(BUILDDIR) && $(GCC_ENV_PARAMS) $(GCC_SRCDIR)/configure \
@@ -143,6 +148,10 @@ $(BUILDSTEPS)/bootstrap-compiler.d: 
$(BUILDSTEPS)/srcdir-step3.d $(BUILDSTEPS)/b
 
 $(BUILDSTEPS)/srcdir-step3.d: $(BUILDSTEPS)/srcdir-step2.d 
$(SOURCESDIR)/$(UPSTREAM_GCC_PATCH)
        bzcat $(SOURCESDIR)/$(UPSTREAM_GCC_PATCH) | patch -d $(GCC_SRCDIR) -p1
+       cd $(GCC_SRCDIR) && ./contrib/gcc_update --touch
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libmudflap
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libssp
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libquadmath
        touch $@
 
 $(BUILDSTEPS)/srcdir-step2.d: $(BUILDSTEPS)/srcdir-step1.d 
$(SOURCESDIR)/$(UPSTREAM_GMP_TARBALL) $(SOURCESDIR)/$(UPSTREAM_MPFR_TARBALL) 
$(SOURCESDIR)/$(UPSTREAM_MPC_TARBALL)


-----------------------------------------------------------------------

Summary of changes:
 m68k-atari-mint/Makefile |   11 ++++++++++-
 1 files changed, 10 insertions(+), 1 deletions(-)

diff --git a/m68k-atari-mint/Makefile b/m68k-atari-mint/Makefile
index fd7ff5c..eb0f3c4 100644
--- a/m68k-atari-mint/Makefile
+++ b/m68k-atari-mint/Makefile
@@ -41,6 +41,11 @@ UPSTREAM_GEMLIB_VERSION := CVS-20100223
 UPSTREAM_GEMLIB_TARBALL := gemlib-$(UPSTREAM_GEMLIB_VERSION).tar.bz2
 UPSTREAM_GEMLIB_URI := 
http://vincent.riviere.free.fr/soft/m68k-atari-mint/archives/$(UPSTREAM_GEMLIB_TARBALL)
 
+GCC_AUTOCONF := autoconf2.64
+GCC_AUTOHEADER := autoheader2.64
+GCC_AUTORECONF := autoreconf2.64
+GCC_AUTOM4TE := autom4te2.64
+
 TOP := $(CURDIR)
 RECIPES := $(TOP)/recipes
 SOURCESDIR := $(TOP)/sources
@@ -122,7 +127,7 @@ $(BUILDSTEPS)/mintlib.d: $(BUILDSTEPS)/bootstrap-compiler.d 
$(SOURCESDIR)/$(UPST
 # Rules to build and install the bootstrap compiler
 ###
 
-GCC_ENV_PARAMS := AUTOCONF=autoconf2.64 AUTOHEADER=autoheader2.64 
AUTORECONF=autoreconf2.64 AUTOM4TE=autom4te2.64 PATH="$(PREFIX)/bin:$(PATH)"
+GCC_ENV_PARAMS := AUTOCONF=$(GCC_AUTOCONF) AUTOHEADER=$(GCC_AUTOHEADER) 
AUTOM4TE=$(GCC_AUTOM4TE) PATH="$(PREFIX)/bin:$(PATH)"
 
 $(BUILDSTEPS)/bootstrap-compiler.d: $(BUILDSTEPS)/srcdir-step3.d 
$(BUILDSTEPS)/binutils.d $(BUILDSTEPS)/mintbin.d
        cd $(BUILDDIR) && $(GCC_ENV_PARAMS) $(GCC_SRCDIR)/configure \
@@ -143,6 +148,10 @@ $(BUILDSTEPS)/bootstrap-compiler.d: 
$(BUILDSTEPS)/srcdir-step3.d $(BUILDSTEPS)/b
 
 $(BUILDSTEPS)/srcdir-step3.d: $(BUILDSTEPS)/srcdir-step2.d 
$(SOURCESDIR)/$(UPSTREAM_GCC_PATCH)
        bzcat $(SOURCESDIR)/$(UPSTREAM_GCC_PATCH) | patch -d $(GCC_SRCDIR) -p1
+       cd $(GCC_SRCDIR) && ./contrib/gcc_update --touch
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libmudflap
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libssp
+       $(GCC_AUTORECONF) -f $(GCC_SRCDIR)/libquadmath
        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://vlists.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to