public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgomp/42519]  New: bootstrap fails on powerpc64-linux because of libgomp
@ 2009-12-28 15:16 laurent at guerby dot net
  2009-12-28 17:33 ` [Bug libgomp/42519] " jakub at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 9+ messages in thread
From: laurent at guerby dot net @ 2009-12-28 15:16 UTC (permalink / raw)
  To: gcc-bugs

Trunk bootstrap on powerpc64-linux (debian etch) fails on a warning
during libgomp build:

<<
if /bin/sh ./libtool --tag=CC --mode=compile
/home/guerby/build-144268/./gcc/xgcc -B/home/guerby/build-144268/./gcc/
-B/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/bin/
-B/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/lib/ -isystem
/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/include -isystem
/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/sys-include
-DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp -I. 
-I../../../../trunk/libgomp/config/linux/powerpc
-I../../../../trunk/libgomp/config/linux
-I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp  -Wall
-Werror -ftls-model=initial-exec -Wc,-pthread -g -O2    -m64 -fPIC
-mstrict-align -MT proc.lo -MD -MP -MF ".deps/proc.Tpo" -c -o proc.lo
../../../../trunk/libgomp/config/linux/proc.c; \
        then mv -f ".deps/proc.Tpo" ".deps/proc.Plo"; else rm -f
".deps/proc.Tpo"; exit 1; fi
libtool: compile:  /home/guerby/build-144268/./gcc/xgcc
-B/home/guerby/build-144268/./gcc/
-B/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/bin/
-B/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/lib/ -isystem
/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/include -isystem
/n/41/guerby/install-trunk-144268/powerpc64-unknown-linux-gnu/sys-include
-DHAVE_CONFIG_H -I. -I../../../../trunk/libgomp -I.
-I../../../../trunk/libgomp/config/linux/powerpc
-I../../../../trunk/libgomp/config/linux
-I../../../../trunk/libgomp/config/posix -I../../../../trunk/libgomp -Wall
-Werror -pthread -ftls-model=initial-exec -g -O2 -m64 -fPIC -mstrict-align -MT
proc.lo -MD -MP -MF .deps/proc.Tpo -c
../../../../trunk/libgomp/config/linux/proc.c  -fPIC -DPIC -o .libs/proc.o
cc1: warnings being treated as errors
../../../../trunk/libgomp/config/linux/proc.c: In function
'gomp_init_num_threads':
../../../../trunk/libgomp/config/linux/proc.c:78: error: implicit declaration
of function 'pthread_getaffinity_np'
make[8]: *** [proc.lo] Error 1
make[8]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/64/libgomp'
make[7]: *** [all-recursive] Error 1
make[7]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/64/libgomp'
make[6]: *** [all] Error 2
make[6]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/64/libgomp'
make[5]: *** [multi-do] Error 1
make[5]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/libgomp'
make[4]: *** [all-multi] Error 2
make[4]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/libgomp'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/libgomp'
make[2]: *** [all] Error 2
make[2]: Leaving directory
`/home/guerby/build-144268/powerpc64-unknown-linux-gnu/libgomp'
make[1]: *** [all-target-libgomp] Error 2
make[1]: Leaving directory `/home/guerby/build-144268'
make: *** [bootstrap] Error 2
>>

Note: this was reported on another platform as
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32193

libgomp/configure.ac has:

# Add -Wall -Werror if we are using GCC.
if test "x$GCC" = "xyes"; then
  XCFLAGS="$XCFLAGS -Wall -Werror"
fi

I had to remove this part to be able to bootstrap. Now may be it's a bug
in debian etch libc headers but it would be nice to honor
--disable-werror in libgomp.

http://gcc.gnu.org/ml/gcc/2009-02/msg00302.html


-- 
           Summary: bootstrap fails on powerpc64-linux because of libgomp
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P3
         Component: libgomp
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: laurent at guerby dot net
 GCC build triplet: powerpc64-unknown-linux-gnu
  GCC host triplet: powerpc64-unknown-linux-gnu
GCC target triplet: powerpc64-unknown-linux-gnu


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
  2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
@ 2009-12-28 17:33 ` jakub at gcc dot gnu dot org
  2009-12-28 17:45 ` amonakov at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-28 17:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from jakub at gcc dot gnu dot org  2009-12-28 17:33 -------
So, your pthread.h doesn't contain prototype for pthread_getaffinity_np, yet
libpthread.so.0 exports it?  Otherwise:
# Check for pthread_{,attr_}[sg]etaffinity_np.
AC_LINK_IFELSE(
 [AC_LANG_PROGRAM(
  [#define _GNU_SOURCE
   #include <pthread.h>],
  [cpu_set_t cpuset;
   pthread_attr_t attr;
   pthread_getaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
   if (CPU_ISSET (0, &cpuset))
     CPU_SET (1, &cpuset);
   else
     CPU_ZERO (&cpuset);
   pthread_setaffinity_np (pthread_self (), sizeof (cpu_set_t), &cpuset);
   pthread_attr_init (&attr);
   pthread_attr_getaffinity_np (&attr, sizeof (cpu_set_t), &cpuset);
   pthread_attr_setaffinity_np (&attr, sizeof (cpu_set_t), &cpuset);])],
  AC_DEFINE(HAVE_PTHREAD_AFFINITY_NP, 1,
[       Define if pthread_{,attr_}{g,s}etaffinity_np is supported.]))
would fail...
pthread_getaffinity_np has been added to both pthread.h and libpthread.so.0 at
the same time, 2003-05-09.  libgomp/config/linux/proc.c starts with
#ifndef _GNU_SOURCE #define _GNU_SOURCE 1 #endif, so the right CPU feature test
macro is certainly defined.


-- 

jakub at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |WAITING


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
  2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
  2009-12-28 17:33 ` [Bug libgomp/42519] " jakub at gcc dot gnu dot org
@ 2009-12-28 17:45 ` amonakov at gcc dot gnu dot org
  2009-12-28 17:47 ` laurent at guerby dot net
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 9+ messages in thread
From: amonakov at gcc dot gnu dot org @ 2009-12-28 17:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from amonakov at gcc dot gnu dot org  2009-12-28 17:45 -------
(In reply to comment #1)
> So, your pthread.h doesn't contain prototype for pthread_getaffinity_np, yet
> libpthread.so.0 exports it?  Otherwise:

Affected system declares those functions in /usr/include/nptl/pthread.h.  Some
clarifications here: http://gcc.gnu.org/ml/gcc/2009-12/msg00376.html


-- 


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
  2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
  2009-12-28 17:33 ` [Bug libgomp/42519] " jakub at gcc dot gnu dot org
  2009-12-28 17:45 ` amonakov at gcc dot gnu dot org
@ 2009-12-28 17:47 ` laurent at guerby dot net
  2009-12-28 17:50 ` jakub at gcc dot gnu dot org
  2009-12-28 17:55 ` laurent at guerby dot net
  4 siblings, 0 replies; 9+ messages in thread
From: laurent at guerby dot net @ 2009-12-28 17:47 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from laurent at guerby dot net  2009-12-28 17:47 -------
"The second issue is how libgomp configure detects availability of
pthread_{attr,}_{get,set}affinity_np. It uses link test and does not pass -Wall
-Werror to compiler; thus, libgomp build fails if those functions are declared
in /usr/include/nptl/pthread.h but not in /usr/include/pthread.h (libgomp only
includes the latter)."

I confirm:

guerby@gcc40:/usr/include$ grep pthread_getaffinity_np *.h */*.h
nptl/pthread.h:extern int pthread_getaffinity_np (pthread_t __th, size_t
__cpusetsize,


-- 

laurent at guerby dot net changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|WAITING                     |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2009-12-28 17:47:45
               date|                            |


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
  2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
                   ` (2 preceding siblings ...)
  2009-12-28 17:47 ` laurent at guerby dot net
@ 2009-12-28 17:50 ` jakub at gcc dot gnu dot org
  2009-12-28 17:55 ` laurent at guerby dot net
  4 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu dot org @ 2009-12-28 17:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jakub at gcc dot gnu dot org  2009-12-28 17:50 -------
If Debian provides by default LinuxThread's <pthread.h> instead of NPTL
<pthread.h>, then it should also make sure linking with -lpthread links against
LinuxThread's libpthread.so instead of NPTL one.  So this looks like a distro
bug to me.


-- 


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
  2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
                   ` (3 preceding siblings ...)
  2009-12-28 17:50 ` jakub at gcc dot gnu dot org
@ 2009-12-28 17:55 ` laurent at guerby dot net
  4 siblings, 0 replies; 9+ messages in thread
From: laurent at guerby dot net @ 2009-12-28 17:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from laurent at guerby dot net  2009-12-28 17:55 -------
Yes likely a distro header bug as I said: "Now may be it's a bug in debian etch
libc headers but it would be nice to honor --disable-werror in libgomp."


-- 


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


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
       [not found] <bug-42519-4@http.gcc.gnu.org/bugzilla/>
  2013-12-26 23:30 ` steven at gcc dot gnu.org
  2013-12-27  8:23 ` laurent at guerby dot net
@ 2013-12-27 14:05 ` steven at gcc dot gnu.org
  2 siblings, 0 replies; 9+ messages in thread
From: steven at gcc dot gnu.org @ 2013-12-27 14:05 UTC (permalink / raw)
  To: gcc-bugs

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

Steven Bosscher <steven at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |steven at gcc dot gnu.org
         Resolution|---                         |WONTFIX

--- Comment #8 from Steven Bosscher <steven at gcc dot gnu.org> ---
LinuxThreads is obsolete also -> WONTFIX.


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
       [not found] <bug-42519-4@http.gcc.gnu.org/bugzilla/>
  2013-12-26 23:30 ` steven at gcc dot gnu.org
@ 2013-12-27  8:23 ` laurent at guerby dot net
  2013-12-27 14:05 ` steven at gcc dot gnu.org
  2 siblings, 0 replies; 9+ messages in thread
From: laurent at guerby dot net @ 2013-12-27  8:23 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from Laurent GUERBY <laurent at guerby dot net> ---
debian etch is an obsolete OS now so feel free to close, I no longer have an
etch system around to test anyway :).


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [Bug libgomp/42519] bootstrap fails on powerpc64-linux because of libgomp
       [not found] <bug-42519-4@http.gcc.gnu.org/bugzilla/>
@ 2013-12-26 23:30 ` steven at gcc dot gnu.org
  2013-12-27  8:23 ` laurent at guerby dot net
  2013-12-27 14:05 ` steven at gcc dot gnu.org
  2 siblings, 0 replies; 9+ messages in thread
From: steven at gcc dot gnu.org @ 2013-12-26 23:30 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Steven Bosscher <steven at gcc dot gnu.org> ---
A serious candidate for WONTFIX... Laurent?


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2013-12-27 14:05 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-12-28 15:16 [Bug libgomp/42519] New: bootstrap fails on powerpc64-linux because of libgomp laurent at guerby dot net
2009-12-28 17:33 ` [Bug libgomp/42519] " jakub at gcc dot gnu dot org
2009-12-28 17:45 ` amonakov at gcc dot gnu dot org
2009-12-28 17:47 ` laurent at guerby dot net
2009-12-28 17:50 ` jakub at gcc dot gnu dot org
2009-12-28 17:55 ` laurent at guerby dot net
     [not found] <bug-42519-4@http.gcc.gnu.org/bugzilla/>
2013-12-26 23:30 ` steven at gcc dot gnu.org
2013-12-27  8:23 ` laurent at guerby dot net
2013-12-27 14:05 ` steven at gcc dot gnu.org

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).