This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC 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 bootstrap/30058] New: [4.3 regression] bootstrap broken on i386-unknown-netbsdelf2.0.2


Building libgfortran there dies, probably due to the extern inline patch:

.libs/signal.o(.text+0x0): In function `__sigaddset14':
: multiple definition of `__sigaddset14'
.libs/kill.o(.text+0x0): first defined here
.libs/signal.o(.text+0x75): In function `__sigdelset14':
: multiple definition of `__sigdelset14'
.libs/kill.o(.text+0x75): first defined here
.libs/signal.o(.text+0xec): In function `__sigismember14':
: multiple definition of `__sigismember14'
.libs/kill.o(.text+0xec): first defined here
.libs/signal.o(.text+0x154): In function `__sigemptyset14':
: multiple definition of `__sigemptyset14'
.libs/kill.o(.text+0x154): first defined here
.libs/signal.o(.text+0x185): In function `__sigfillset14':
: multiple definition of `__sigfillset14'
.libs/kill.o(.text+0x185): first defined here
collect2: ld returned 1 exit status

As an example, /usr/include/signal.h contains:

int sigemptyset __P((sigset_t *)) __RENAME(__sigemptyset14);

extern __inline int
sigemptyset(sigset_t *set)
{
        __sigemptyset(set);
        return (0);
}


-- 
           Summary: [4.3 regression] bootstrap broken on i386-unknown-
                    netbsdelf2.0.2
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P3
         Component: bootstrap
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: fxcoudert at gcc dot gnu dot org
 GCC build triplet: i386-unknown-netbsdelf2.0.2
  GCC host triplet: i386-unknown-netbsdelf2.0.2
GCC target triplet: i386-unknown-netbsdelf2.0.2


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=30058


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