Gitweb links:

...log 
http://git.netsurf-browser.org/buildsystem.git/shortlog/99f65f77fdb6cc05ee6272323818de48521b1796
...commit 
http://git.netsurf-browser.org/buildsystem.git/commit/99f65f77fdb6cc05ee6272323818de48521b1796
...tree 
http://git.netsurf-browser.org/buildsystem.git/tree/99f65f77fdb6cc05ee6272323818de48521b1796

The branch, master has been updated
       via  99f65f77fdb6cc05ee6272323818de48521b1796 (commit)
      from  d0ca2b292d483abc3885f00ae11e4bea49ecd981 (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/buildsystem.git/commit/?id=99f65f77fdb6cc05ee6272323818de48521b1796
commit 99f65f77fdb6cc05ee6272323818de48521b1796
Author: Vincent Sanders <[email protected]>
Commit: Vincent Sanders <[email protected]>

    ensure fedora gcc gives us all the version info

diff --git a/makefiles/Makefile.gcc b/makefiles/Makefile.gcc
index 6ca7ba1..7d70bc1 100644
--- a/makefiles/Makefile.gcc
+++ b/makefiles/Makefile.gcc
@@ -93,7 +93,7 @@ endif
 ###############################################################################
 
 # Determine if the compiler supports simultaneous build & dep.
-ccvsn := $(shell $(CC) -dumpversion)
+ccvsn := $(shell $(CC) -dumpversion -dumpfullversion)
 # ccvsn = x.y.z
 GCCVER := $(word 1,$(subst ., ,$(ccvsn)))
 # GCCVER = x
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 33d6add..3021890 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -402,7 +402,7 @@ endif
 # Detect if the toolchain ought to support sanitizers
 SANITIZE_OK=no
 ifeq ($(toolchain),gcc)
-  GCC_VERSION := $(shell $(CC) -dumpversion)
+  GCC_VERSION := $(shell $(CC) -dumpversion -dumpfullversion)
   GCC_MAJOR := $(word 1,$(subst ., ,$(GCC_VERSION)))
   ifeq ($(shell expr $(GCC_MAJOR) \>= 6),1)
     SANITIZE_OK=yes


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

Summary of changes:
 makefiles/Makefile.gcc   |    2 +-
 makefiles/Makefile.tools |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/makefiles/Makefile.gcc b/makefiles/Makefile.gcc
index 6ca7ba1..7d70bc1 100644
--- a/makefiles/Makefile.gcc
+++ b/makefiles/Makefile.gcc
@@ -93,7 +93,7 @@ endif
 ###############################################################################
 
 # Determine if the compiler supports simultaneous build & dep.
-ccvsn := $(shell $(CC) -dumpversion)
+ccvsn := $(shell $(CC) -dumpversion -dumpfullversion)
 # ccvsn = x.y.z
 GCCVER := $(word 1,$(subst ., ,$(ccvsn)))
 # GCCVER = x
diff --git a/makefiles/Makefile.tools b/makefiles/Makefile.tools
index 33d6add..3021890 100644
--- a/makefiles/Makefile.tools
+++ b/makefiles/Makefile.tools
@@ -402,7 +402,7 @@ endif
 # Detect if the toolchain ought to support sanitizers
 SANITIZE_OK=no
 ifeq ($(toolchain),gcc)
-  GCC_VERSION := $(shell $(CC) -dumpversion)
+  GCC_VERSION := $(shell $(CC) -dumpversion -dumpfullversion)
   GCC_MAJOR := $(word 1,$(subst ., ,$(GCC_VERSION)))
   ifeq ($(shell expr $(GCC_MAJOR) \>= 6),1)
     SANITIZE_OK=yes


-- 
NetSurf Project build system

_______________________________________________
netsurf-commits mailing list
[email protected]
http://listmaster.pepperfish.net/cgi-bin/mailman/listinfo/netsurf-commits-netsurf-browser.org

Reply via email to