[Bug 3526] New: [IcedTea8] configure fails to parse GCC version

bugzilla-daemon at icedtea.classpath.org bugzilla-daemon at icedtea.classpath.org
Thu Feb 8 04:41:18 UTC 2018


https://icedtea.classpath.org/bugzilla/show_bug.cgi?id=3526

            Bug ID: 3526
           Summary: [IcedTea8] configure fails to parse GCC version
           Product: IcedTea
           Version: 8-hg
          Hardware: all
                OS: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: IcedTea
          Assignee: gnu.andrew at redhat.com
          Reporter: gnu.andrew at redhat.com
                CC: unassigned at icedtea.classpath.org

The version test in common/autoconf/toolchain.m4 attempts to parse the verbose
version output of GCC:

$ gcc --version
gcc (Gentoo 6.3.0 p1.0) 6.3.0
Copyright (C) 2016 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

It would be simpler and more reliable to use -dumpversion.

$ gcc -dumpversion
6.3.0

as the HotSpot build does:

  # -dumpversion in gcc-2.91 shows "egcs-2.91.66". In later version, it only    
  # prints the numbers (e.g. "2.95", "3.2.1")                                   
  CC_VER_MAJOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f1)
  CC_VER_MINOR := $(shell $(CC) -dumpversion | sed 's/egcs-//' | cut -d'.' -f2)

-- 
You are receiving this mail because:
You are on the CC list for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/attachments/20180208/f996c028/attachment.html>


More information about the distro-pkg-dev mailing list