This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/10816] New: ld and as version checks in configure.in are incorrect


The ld and as version checks in glibc-2.10.1 assume the binutils versions start with 2.1_.  This worked 
when the versions were 2.15-2.19, but the latest version is 2.20.  This causes the version check to fail 
even though version 2.20 is newer than 2.19

AC_CHECK_PROG_VER(AS, $AS, --version,
                 [GNU assembler.* \([0-9]*\.[0-9.]*\)],
                 [2.1[3-9]*], AS=: critic_missing="$critic_missing as")
AC_CHECK_PROG_VER(LD, $LD, --version,
                 [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
                 [2.1[3-9]*], LD=: critic_missing="$critic_missing ld")

-- 
           Summary: ld and as version checks in configure.in are incorrect
           Product: glibc
           Version: 2.10
            Status: NEW
          Severity: normal
          Priority: P2
         Component: libc
        AssignedTo: drepper at redhat dot com
        ReportedBy: iamstuffed at gmail dot com
                CC: glibc-bugs at sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=10816

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]