public inbox for glibc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "felix-glibc at fefe dot de" <sourceware-bugzilla@sourceware.org>
To: glibc-bugs@sourceware.org
Subject: [Bug libc/29703] New: gettimeofda: compile error with gcc 12.2.0 (glibc 2.36)
Date: Wed, 19 Oct 2022 15:59:47 +0000	[thread overview]
Message-ID: <bug-29703-131@http.sourceware.org/bugzilla/> (raw)

https://sourceware.org/bugzilla/show_bug.cgi?id=29703

            Bug ID: 29703
           Summary: gettimeofda: compile error with gcc 12.2.0 (glibc
                    2.36)
           Product: glibc
           Version: 2.36
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: libc
          Assignee: unassigned at sourceware dot org
          Reporter: felix-glibc at fefe dot de
                CC: drepper.fsp at gmail dot com
  Target Milestone: ---

I'm trying to build glibc 2.36 with gcc 12.2.0 on x86_64-linux. Here's what
happens:

make[2]: Entering directory '/tmp/glibc-2.36/time'
gcc ../sysdeps/unix/sysv/linux/x86/gettimeofday.c -c -std=gnu11 -fgnu89-inline 
-pipe -O2 -Wall -Wwrite-strings -Wundef -Werror -fmerge-all-constants
-frounding-math -fstack-protector -fno-common -Wstrict-prototypes
-Wold-style-definition -fmath-errno    -fPIC -fcf-protection  
-ftls-model=initial-exec      -I../include -I/tmp/glibc-2.36/build/time 
-I/tmp/glibc-2.36/build  -I../sysdeps/unix/sysv/linux/x86_64/64 
-I../sysdeps/unix/sysv/linux/x86_64  -I../sysdeps/unix/sysv/linux/x86/include
-I../sysdeps/unix/sysv/linux/x86  -I../sysdeps/x86/nptl 
-I../sysdeps/unix/sysv/linux/wordsize-64  -I../sysdeps/x86_64/nptl 
-I../sysdeps/unix/sysv/linux/include -I../sysdeps/unix/sysv/linux 
-I../sysdeps/nptl  -I../sysdeps/pthread  -I../sysdeps/gnu 
-I../sysdeps/unix/inet  -I../sysdeps/unix/sysv  -I../sysdeps/unix/x86_64 
-I../sysdeps/unix  -I../sysdeps/posix  -I../sysdeps/x86_64/64 
-I../sysdeps/x86_64/fpu  -I../sysdeps/x86/fpu  -I../sysdeps/x86_64 
-I../sysdeps/x86/include -I../sysdeps/x86  -I../sysdeps/ieee754/float128 
-I../sysdeps/ieee754/ldbl-96/include -I../sysdeps/ieee754/ldbl-96 
-I../sysdeps/ieee754/dbl-64  -I../sysdeps/ieee754/flt-32 
-I../sysdeps/wordsize-64  -I../sysdeps/ieee754  -I../sysdeps/generic  -I..
-I../libio -I.  -D_LIBC_REENTRANT -include /tmp/glibc-2.36/build/libc-modules.h
-DMODULE_NAME=libc -include ../include/libc-symbols.h  -DPIC -DSHARED    
-DTOP_NAMESPACE=glibc -o /tmp/glibc-2.36/build/time/gettimeofday.os -MD -MP -MF
/tmp/glibc-2.36/build/time/gettimeofday.os.dt -MT
/tmp/glibc-2.36/build/time/gettimeofday.os
In file included from <command-line>:
../sysdeps/unix/sysv/linux/gettimeofday.c:56:29: error: ‘gettimeofday’ alias
between functions of incompatible types ‘int(struct timeval * restrict,  void *
restrict)’ and ‘int (*(void))(struct timeval *, void *)’
[-Werror=attribute-alias=]
   56 | weak_alias (__gettimeofday, gettimeofday)
      |                             ^~~~~~~~~~~~
./../include/libc-symbols.h:155:26: note: in definition of macro ‘_weak_alias’
  155 |   extern __typeof (name) aliasname __attribute__ ((weak, alias
(#name))) \
      |                          ^~~~~~~~~
../sysdeps/unix/sysv/linux/gettimeofday.c:56:1: note: in expansion of macro
‘weak_alias’
   56 | weak_alias (__gettimeofday, gettimeofday)
      | ^~~~~~~~~~
../sysdeps/unix/sysv/linux/gettimeofday.c:42:13: note: aliased declaration here
   42 | libc_ifunc (__gettimeofday,
      |             ^~~~~~~~~~~~~~
./../include/libc-symbols.h:737:25: note: in definition of macro
‘__ifunc_resolver’
  737 |   __typeof (type_name) *name##_ifunc (arg)                             
\
      |                         ^~~~
./../include/libc-symbols.h:853:32: note: in expansion of macro ‘__ifunc’
  853 | #define libc_ifunc(name, expr) __ifunc (name, name, expr, void,
INIT_ARCH)
      |                                ^~~~~~~
../sysdeps/unix/sysv/linux/gettimeofday.c:42:1: note: in expansion of macro
‘libc_ifunc’
   42 | libc_ifunc (__gettimeofday,
      | ^~~~~~~~~~
cc1: all warnings being treated as errors
make[2]: *** [/tmp/glibc-2.36/build/sysd-rules:93:
/tmp/glibc-2.36/build/time/gettimeofday.os] Error 1
make[2]: Leaving directory '/tmp/glibc-2.36/time'
make[1]: *** [Makefile:484: time/subdir_lib] Error 2
make[1]: Leaving directory '/tmp/glibc-2.36'
make: *** [Makefile:9: all] Error 2

-- 
You are receiving this mail because:
You are on the CC list for the bug.

             reply	other threads:[~2022-10-19 15:59 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-19 15:59 felix-glibc at fefe dot de [this message]
2022-10-19 16:23 ` [Bug libc/29703] " schwab@linux-m68k.org
2022-10-20  9:29 ` felix-glibc at fefe dot de
2022-10-20 10:13 ` schwab@linux-m68k.org
2022-10-20 14:22 ` felix-glibc at fefe dot de
2022-10-20 14:38 ` felix-glibc at fefe dot de
2022-10-20 16:17 ` adhemerval.zanella at linaro dot org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-29703-131@http.sourceware.org/bugzilla/ \
    --to=sourceware-bugzilla@sourceware.org \
    --cc=glibc-bugs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).