public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug libgomp/29494]  New: libgomp build fails with missing pthread_mutexattr_settype
@ 2006-10-18  3:01 rbrown at bravurasolutions dot com dot au
  2006-10-18  5:18 ` [Bug libgomp/29494] " ebotcazou at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: rbrown at bravurasolutions dot com dot au @ 2006-10-18  3:01 UTC (permalink / raw)
  To: gcc-bugs

libgomp fails to build on Solaris 2.6 because it lacks
pthread_mutexattr_settype
and PTHREAD_MUTEX_EXCLUSIVE in "@(#)pthread.h  1.16    97/05/05 SMI".
Solaris 2.8 "@(#)pthread.h  1.28    99/11/15 SMI" has the function and define.

/devel/src/gcc-4.2-20060930.obj/./gcc/xgcc
-B/devel/src/gcc-4.2-20060930.obj/./gcc/ -B/usr/local/sparc-sun-solaris2.6/bin/
  -B/usr/local/sparc-sun-solaris2.6/lib/
 -isystem /usr/local/sparc-sun-solaris2.6/include
 -isystem /usr/local/sparc-sun-solaris2.6/sys-include -DHAVE_CONFIG_H
 -I. -I../../../gcc-4.2-20060930/libgomp -I.
-I../../../gcc-4.2-20060930/libgomp/config/posix 
-I../../../gcc-4.2-20060930/libgomp
 -Wall -Werror -O2 -g -O2 -MT 
lock.lo -MD -MP -MF .deps/lock.Tpo -c
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c  -fPIC -DPIC -o
.libs/lock.o
cc1: warnings being treated as errors
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c: In function
'omp_init_nest_lock':
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c:78: warning: implicit
declaration of function 'pthread_mutexattr_settype'
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c:78: error:
'PTHREAD_MUTEX_RECURSIVE' undeclared (first use in this function)
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c:78: error: (Each
undeclared identifier is reported only once
../../../gcc-4.2-20060930/libgomp/config/posix/lock.c:78: error: for each
function it appears in.)
make[4]: *** [lock.lo] Error 1


-- 
           Summary: libgomp build fails with missing
                    pthread_mutexattr_settype
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: trivial
          Priority: P3
         Component: libgomp
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: rbrown at bravurasolutions dot com dot au
 GCC build triplet: sparc-sun-solaris2.6
  GCC host triplet: sparc-sun-solaris2.6
GCC target triplet: sparc-sun-solaris2.6


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


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

* [Bug libgomp/29494] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
@ 2006-10-18  5:18 ` ebotcazou at gcc dot gnu dot org
  2006-10-18 17:07 ` [Bug libgomp/29494] [4.2 Regression] " pinskia at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-18  5:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from ebotcazou at gcc dot gnu dot org  2006-10-18 05:18 -------
Right, bootstrap has been broken because of that for ages.

I've pinged the patch many times but to no avail...


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ebotcazou at gcc dot gnu dot
                   |                            |org
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2006-
                   |                            |02/msg01300.html
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-10-18 05:18:32
               date|                            |
   Target Milestone|---                         |4.2.0


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


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

* [Bug libgomp/29494] [4.2 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
  2006-10-18  5:18 ` [Bug libgomp/29494] " ebotcazou at gcc dot gnu dot org
@ 2006-10-18 17:07 ` pinskia at gcc dot gnu dot org
  2006-10-18 22:55 ` rbrown at bravurasolutions dot com dot au
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-18 17:07 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
           Severity|trivial                     |normal
           Keywords|                            |build
            Summary|libgomp build fails with    |[4.2 Regression] libgomp
                   |missing                     |build fails with missing
                   |pthread_mutexattr_settype   |pthread_mutexattr_settype


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


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

* [Bug libgomp/29494] [4.2 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
  2006-10-18  5:18 ` [Bug libgomp/29494] " ebotcazou at gcc dot gnu dot org
  2006-10-18 17:07 ` [Bug libgomp/29494] [4.2 Regression] " pinskia at gcc dot gnu dot org
@ 2006-10-18 22:55 ` rbrown at bravurasolutions dot com dot au
  2006-10-19  4:49 ` ebotcazou at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rbrown at bravurasolutions dot com dot au @ 2006-10-18 22:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from rbrown at bravurasolutions dot com dot au  2006-10-18 22:54 -------
(In reply to comment #1)
> Right, bootstrap has been broken because of that for ages.
> 
> I've pinged the patch many times but to no avail...
> 

Eric's patch is http://gcc.gnu.org/ml/gcc-patches/2006-02/msg01300.html


-- 


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


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

* [Bug libgomp/29494] [4.2 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (2 preceding siblings ...)
  2006-10-18 22:55 ` rbrown at bravurasolutions dot com dot au
@ 2006-10-19  4:49 ` ebotcazou at gcc dot gnu dot org
  2006-10-21  8:08 ` ebotcazou at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-19  4:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from ebotcazou at gcc dot gnu dot org  2006-10-19 04:49 -------
> Eric's patch is http://gcc.gnu.org/ml/gcc-patches/2006-02/msg01300.html

Right, but the info is already in the "Patch URL" field.


-- 


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


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

* [Bug libgomp/29494] [4.2 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (3 preceding siblings ...)
  2006-10-19  4:49 ` ebotcazou at gcc dot gnu dot org
@ 2006-10-21  8:08 ` ebotcazou at gcc dot gnu dot org
  2006-10-24 13:59 ` [Bug libgomp/29494] [4.2/4.3 " ebotcazou at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-21  8:08 UTC (permalink / raw)
  To: gcc-bugs



-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|ebotcazou at gcc dot gnu dot|
                   |org                         |
         AssignedTo|unassigned at gcc dot gnu   |ebotcazou at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-10-18 05:18:32         |2006-10-21 08:08:43
               date|                            |


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (4 preceding siblings ...)
  2006-10-21  8:08 ` ebotcazou at gcc dot gnu dot org
@ 2006-10-24 13:59 ` ebotcazou at gcc dot gnu dot org
  2006-10-24 14:00 ` ebotcazou at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-24 13:59 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from ebotcazou at gcc dot gnu dot org  2006-10-24 13:59 -------
Subject: Bug 29494

Author: ebotcazou
Date: Tue Oct 24 13:59:06 2006
New Revision: 118004

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118004
Log:
        PR libgomp/29494
        * configure.tgt: Use posix95 configuration for Solaris 2.5.1 and 2.6.
        * config/posix95: New directory.
        * config/posix95/omp-lock.h: New file.
        * config/posix95/lock.c: Likewise.


Added:
    trunk/libgomp/config/posix95/
    trunk/libgomp/config/posix95/lock.c
    trunk/libgomp/config/posix95/omp-lock.h
Modified:
    trunk/libgomp/ChangeLog
    trunk/libgomp/configure.tgt


-- 


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (5 preceding siblings ...)
  2006-10-24 13:59 ` [Bug libgomp/29494] [4.2/4.3 " ebotcazou at gcc dot gnu dot org
@ 2006-10-24 14:00 ` ebotcazou at gcc dot gnu dot org
  2006-10-24 14:01 ` ebotcazou at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-24 14:00 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from ebotcazou at gcc dot gnu dot org  2006-10-24 13:59 -------
Subject: Bug 29494

Author: ebotcazou
Date: Tue Oct 24 13:59:39 2006
New Revision: 118005

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=118005
Log:
        PR libgomp/29494
        * configure.tgt: Use posix95 configuration for Solaris 2.5.1 and 2.6.
        * config/posix95: New directory.
        * config/posix95/omp-lock.h: New file.
        * config/posix95/lock.c: Likewise.


Added:
    branches/gcc-4_2-branch/libgomp/config/posix95/
    branches/gcc-4_2-branch/libgomp/config/posix95/lock.c
    branches/gcc-4_2-branch/libgomp/config/posix95/omp-lock.h
Modified:
    branches/gcc-4_2-branch/libgomp/ChangeLog
    branches/gcc-4_2-branch/libgomp/configure.tgt


-- 


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (6 preceding siblings ...)
  2006-10-24 14:00 ` ebotcazou at gcc dot gnu dot org
@ 2006-10-24 14:01 ` ebotcazou at gcc dot gnu dot org
  2006-10-27  0:55 ` jvdelisle at verizon dot net
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-24 14:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from ebotcazou at gcc dot gnu dot org  2006-10-24 14:01 -------
Fixed everywhere.  My latest results on SPARC/Solaris 2.6 are:

                === libgomp tests ===


Running target unix
WARNING: program timed out.
FAIL: libgomp.c/appendix-a/a.18.1.c execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O0  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O1  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O2  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O3 -fomit-frame-pointer 
execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O3 -fomit-frame-pointer
-funroll-loops  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O3 -fomit-frame-pointer
-funroll-all-loops -finline-functions  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -O3 -g  execution test
WARNING: program timed out.
FAIL: libgomp.fortran/appendix-a/a.18.1.f90  -Os  execution test

                === libgomp Summary ===

# of expected passes            1285
# of unexpected failures        9
# of unsupported tests          118


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (7 preceding siblings ...)
  2006-10-24 14:01 ` ebotcazou at gcc dot gnu dot org
@ 2006-10-27  0:55 ` jvdelisle at verizon dot net
  2006-10-27  1:01 ` jvdelisle at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jvdelisle at verizon dot net @ 2006-10-27  0:55 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from jvdelisle at verizon dot net  2006-10-27 00:55 -------
Subject: Re:  [4.2/4.3 Regression] libgomp build fails with
 missing pthread_mutexattr_settype

Am I missing something here?
I am getting this with make check for libgomp on i686-linux on 4.2 branch:

Using /usr/share/dejagnu/config/unix.exp as generic interface file for target.
WARNING: Couldn't find tool config file for unix, using default.
Running /home/jerry/gcc/gcc42/libgomp/testsuite/libgomp.c/c.exp ...
FAIL: libgomp.c/appendix-a/a.18.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.18.1.c compilation failed to produce executable
FAIL: libgomp.c/appendix-a/a.2.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.2.1.c compilation failed to produce executable
FAIL: libgomp.c/appendix-a/a.33.3.c (test for excess errors)
FAIL: libgomp.c/appendix-a/a.36.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.36.1.c compilation failed to produce executable
FAIL: libgomp.c/appendix-a/a.39.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.39.1.c compilation failed to produce executable
FAIL: libgomp.c/appendix-a/a.4.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.4.1.c compilation failed to produce executable
FAIL: libgomp.c/appendix-a/a.40.1.c (test for excess errors)
FAIL: libgomp.c/appendix-a/a.5.1.c (test for excess errors)
WARNING: libgomp.c/appendix-a/a.5.1.c compilation failed to produce executable
FAIL: libgomp.c/barrier-1.c (test for excess errors)
WARNING: libgomp.c/barrier-1.c compilation failed to produce executable
FAIL: libgomp.c/copyin-1.c (test for excess errors)
WARNING: libgomp.c/copyin-1.c compilation failed to produce executable
FAIL: libgomp.c/copyin-2.c (test for excess errors)
WARNING: libgomp.c/copyin-2.c compilation failed to produce executable
FAIL: libgomp.c/copyin-3.c (test for excess errors)
WARNING: libgomp.c/copyin-3.c compilation failed to produce executable
FAIL: libgomp.c/critical-1.c (test for excess errors)
WARNING: libgomp.c/critical-1.c compilation failed to produce executable
FAIL: libgomp.c/critical-2.c (test for excess errors)
WARNING: libgomp.c/critical-2.c compilation failed to produce executable
FAIL: libgomp.c/lib-1.c (test for excess errors)
WARNING: libgomp.c/lib-1.c compilation failed to produce executable
FAIL: libgomp.c/loop-1.c (test for excess errors)
WARNING: libgomp.c/loop-1.c compilation failed to produce executable
FAIL: libgomp.c/loop-2.c (test for excess errors)
WARNING: libgomp.c/loop-2.c compilation failed to produce executable
FAIL: libgomp.c/nested-1.c (test for excess errors)
WARNING: libgomp.c/nested-1.c compilation failed to produce executable
FAIL: libgomp.c/nested-2.c (test for excess errors)
WARNING: libgomp.c/nested-2.c compilation failed to produce executable
FAIL: libgomp.c/nestedfn-1.c (test for excess errors)
WARNING: libgomp.c/nestedfn-1.c compilation failed to produce executable
FAIL: libgomp.c/nestedfn-3.c (test for excess errors)
WARNING: libgomp.c/nestedfn-3.c compilation failed to produce executable
FAIL: libgomp.c/nestedfn-4.c (test for excess errors)
WARNING: libgomp.c/nestedfn-4.c compilation failed to produce executable
FAIL: libgomp.c/omp-loop01.c (test for excess errors)
WARNING: libgomp.c/omp-loop01.c compilation failed to produce executable
FAIL: libgomp.c/omp-loop02.c (test for excess errors)
WARNING: libgomp.c/omp-loop02.c compilation failed to produce executable
FAIL: libgomp.c/omp-parallel-if.c (test for excess errors)
WARNING: libgomp.c/omp-parallel-if.c compilation failed to produce executable
FAIL: libgomp.c/omp-single-2.c (test for excess errors)
WARNING: libgomp.c/omp-single-2.c compilation failed to produce executable
FAIL: libgomp.c/omp_hello.c (test for excess errors)
WARNING: libgomp.c/omp_hello.c compilation failed to produce executable
FAIL: libgomp.c/omp_matvec.c (test for excess errors)
WARNING: libgomp.c/omp_matvec.c compilation failed to produce executable
FAIL: libgomp.c/omp_orphan.c (test for excess errors)
WARNING: libgomp.c/omp_orphan.c compilation failed to produce executable
FAIL: libgomp.c/omp_reduction.c (test for excess errors)
WARNING: libgomp.c/omp_reduction.c compilation failed to produce executable
FAIL: libgomp.c/omp_workshare1.c (test for excess errors)
WARNING: libgomp.c/omp_workshare1.c compilation failed to produce executable
FAIL: libgomp.c/omp_workshare2.c (test for excess errors)
WARNING: libgomp.c/omp_workshare2.c compilation failed to produce executable
FAIL: libgomp.c/omp_workshare3.c (test for excess errors)
FAIL: libgomp.c/omp_workshare4.c (test for excess errors)
WARNING: libgomp.c/omp_workshare4.c compilation failed to produce executable
FAIL: libgomp.c/ordered-1.c (test for excess errors)
WARNING: libgomp.c/ordered-1.c compilation failed to produce executable
FAIL: libgomp.c/ordered-2.c (test for excess errors)
WARNING: libgomp.c/ordered-2.c compilation failed to produce executable
FAIL: libgomp.c/parallel-1.c (test for excess errors)
WARNING: libgomp.c/parallel-1.c compilation failed to produce executable
FAIL: libgomp.c/reduction-1.c (test for excess errors)
WARNING: libgomp.c/reduction-1.c compilation failed to produce executable
FAIL: libgomp.c/reduction-2.c (test for excess errors)
WARNING: libgomp.c/reduction-2.c compilation failed to produce executable
FAIL: libgomp.c/reduction-3.c (test for excess errors)
WARNING: libgomp.c/reduction-3.c compilation failed to produce executable
FAIL: libgomp.c/reduction-4.c (test for excess errors)
WARNING: libgomp.c/reduction-4.c compilation failed to produce executable
FAIL: libgomp.c/sections-1.c (test for excess errors)
WARNING: libgomp.c/sections-1.c compilation failed to produce executable
FAIL: libgomp.c/shared-2.c (test for excess errors)
WARNING: libgomp.c/shared-2.c compilation failed to produce executable
FAIL: libgomp.c/single-1.c (test for excess errors)
WARNING: libgomp.c/single-1.c compilation failed to produce executable
FAIL: libgomp.c/vla-1.c (test for excess errors)
WARNING: libgomp.c/vla-1.c compilation failed to produce executable
Running /home/jerry/gcc/gcc42/libgomp/testsuite/libgomp.c++/c++.exp ...
Running /home/jerry/gcc/gcc42/libgomp/testsuite/libgomp.fortran/fortran.exp ...

                 === libgomp Summary ===

# of expected passes            58
# of unexpected failures        45


-- 


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (8 preceding siblings ...)
  2006-10-27  0:55 ` jvdelisle at verizon dot net
@ 2006-10-27  1:01 ` jvdelisle at gcc dot gnu dot org
  2006-10-27  4:32 ` ebotcazou at gcc dot gnu dot org
  2006-10-27  4:38 ` jvdelisle at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27  1:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from jvdelisle at gcc dot gnu dot org  2006-10-27 01:01 -------
I have no failures on 4.3 only on 4.2 branch


-- 


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (9 preceding siblings ...)
  2006-10-27  1:01 ` jvdelisle at gcc dot gnu dot org
@ 2006-10-27  4:32 ` ebotcazou at gcc dot gnu dot org
  2006-10-27  4:38 ` jvdelisle at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2006-10-27  4:32 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from ebotcazou at gcc dot gnu dot org  2006-10-27 04:32 -------
> Am I missing something here?

Definitely. :-)  This PR is about SPARC/Solaris 2.6 only.

> I am getting this with make check for libgomp on i686-linux on 4.2 branch:

Then open a new PR.


-- 


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


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

* [Bug libgomp/29494] [4.2/4.3 Regression] libgomp build fails with missing pthread_mutexattr_settype
  2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
                   ` (10 preceding siblings ...)
  2006-10-27  4:32 ` ebotcazou at gcc dot gnu dot org
@ 2006-10-27  4:38 ` jvdelisle at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: jvdelisle at gcc dot gnu dot org @ 2006-10-27  4:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from jvdelisle at gcc dot gnu dot org  2006-10-27 04:38 -------
:) Andrew is going to see if he can duplicate and if so we will open a new PR.


-- 


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


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

end of thread, other threads:[~2006-10-27  4:38 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-18  3:01 [Bug libgomp/29494] New: libgomp build fails with missing pthread_mutexattr_settype rbrown at bravurasolutions dot com dot au
2006-10-18  5:18 ` [Bug libgomp/29494] " ebotcazou at gcc dot gnu dot org
2006-10-18 17:07 ` [Bug libgomp/29494] [4.2 Regression] " pinskia at gcc dot gnu dot org
2006-10-18 22:55 ` rbrown at bravurasolutions dot com dot au
2006-10-19  4:49 ` ebotcazou at gcc dot gnu dot org
2006-10-21  8:08 ` ebotcazou at gcc dot gnu dot org
2006-10-24 13:59 ` [Bug libgomp/29494] [4.2/4.3 " ebotcazou at gcc dot gnu dot org
2006-10-24 14:00 ` ebotcazou at gcc dot gnu dot org
2006-10-24 14:01 ` ebotcazou at gcc dot gnu dot org
2006-10-27  0:55 ` jvdelisle at verizon dot net
2006-10-27  1:01 ` jvdelisle at gcc dot gnu dot org
2006-10-27  4:32 ` ebotcazou at gcc dot gnu dot org
2006-10-27  4:38 ` jvdelisle at gcc dot gnu dot 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).