public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
@ 2011-08-02 10:45 ludovic@ludovic-brenta.org
  2011-08-02 10:51 ` [Bug ada/49944] " charlet at adacore dot com
                   ` (13 more replies)
  0 siblings, 14 replies; 17+ messages in thread
From: ludovic@ludovic-brenta.org @ 2011-08-02 10:45 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: [4.5/4.6/4.7 regression] Bootstrapping on
                    x86_64-pc-kfreebsd-gnu fails with
                    "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is
                    undefined (more references follow)"
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: ludovic@ludovic-brenta.org
              Host: x86_64-pc-kfreebsd-gnu
            Target: x86_64-pc-kfreebsd-gnu
             Build: x86_64-pc-kfreebsd-gnu


The following commit changed s-osinte-linux.ads but not
s-osinte-kfreebsd-gnu.ads; this breaks bootstrapping on GNU/kFreeBSD:


        * adaint.c (__gnat_pthread_setaffinity_np,
        __gnat_pthread_attr_setaffinity_np): Remove wrappers, no longer needed.
        * s-osinte-linux.ads (pthread_setaffinity_np,
        pthread_attr_setaffinity_np): Remove use of wrappers.
        * s-taprop-linux.adb (Create_Task, Initialize): Restore check to verify
        whether the affinity functionality is available in the OS.
        * gcc-interface/utils.c: Set TREE_STATIC on functions only when there
        are defined.



    git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165635
138bc75d-0d04-0410-961f-82ee72b054a4

This is because GNU/kFreeBSD uses s-taprop-linux.adb, which uses subprograms
defined in either s-osint-linux.ads or s-osint-kfreebsd-gnu.ads depending on
the host.


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
@ 2011-08-02 10:51 ` charlet at adacore dot com
  2011-08-02 10:53   ` Arnaud Charlet
  2011-08-02 10:54 ` charlet at adacore dot com
                   ` (12 subsequent siblings)
  13 siblings, 1 reply; 17+ messages in thread
From: charlet at adacore dot com @ 2011-08-02 10:51 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from charlet at adacore dot com <charlet at adacore dot com> 2011-08-02 10:51:19 UTC ---
> This is because GNU/kFreeBSD uses s-taprop-linux.adb, which uses
> subprograms

Well, then that's the bug: kFreeBSD should cheat and try to reuse linux
files, that's bound to cause this kind of error.

Arno


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

* Re: [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:51 ` [Bug ada/49944] " charlet at adacore dot com
@ 2011-08-02 10:53   ` Arnaud Charlet
  0 siblings, 0 replies; 17+ messages in thread
From: Arnaud Charlet @ 2011-08-02 10:53 UTC (permalink / raw)
  To: charlet at adacore dot com; +Cc: gcc-bugs

> > This is because GNU/kFreeBSD uses s-taprop-linux.adb, which uses
> > subprograms
> 
> Well, then that's the bug: kFreeBSD should cheat and try to reuse linux

Sorry, I meant of course "shouldN'T cheat"

> files, that's bound to cause this kind of error.


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
  2011-08-02 10:51 ` [Bug ada/49944] " charlet at adacore dot com
@ 2011-08-02 10:54 ` charlet at adacore dot com
  2011-08-02 17:31 ` ludovic@ludovic-brenta.org
                   ` (11 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: charlet at adacore dot com @ 2011-08-02 10:54 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from charlet at adacore dot com <charlet at adacore dot com> 2011-08-02 10:53:47 UTC ---
> > This is because GNU/kFreeBSD uses s-taprop-linux.adb, which uses
> > subprograms
> 
> Well, then that's the bug: kFreeBSD should cheat and try to reuse linux

Sorry, I meant of course "shouldN'T cheat"

> files, that's bound to cause this kind of error.


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
  2011-08-02 10:51 ` [Bug ada/49944] " charlet at adacore dot com
  2011-08-02 10:54 ` charlet at adacore dot com
@ 2011-08-02 17:31 ` ludovic@ludovic-brenta.org
  2011-08-02 17:42   ` Arnaud Charlet
  2011-08-02 17:42 ` charlet at adacore dot com
                   ` (10 subsequent siblings)
  13 siblings, 1 reply; 17+ messages in thread
From: ludovic@ludovic-brenta.org @ 2011-08-02 17:31 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Ludovic Brenta <ludovic@ludovic-brenta.org> 2011-08-02 17:30:43 UTC ---
I would not be so assertive as Arno.  It seems to me (but I may be wrong) that
s-taprop-linux.adb really only calls glibc and libpthread, not the kernel, and
therefore should be called s-taprop-glibc.adb.  It looks like the
kernel-specific calls are all in s-osinte-{linux,freebsd,kfreebsd-gnu}.ads,
which have the proper names.  GNU/kFreeBSD uses the GNU glibc instead of
FreeBSD's libc, so I think s-taprop-linux.adb is appropriate there.


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (2 preceding siblings ...)
  2011-08-02 17:31 ` ludovic@ludovic-brenta.org
@ 2011-08-02 17:42 ` charlet at adacore dot com
  2011-08-04 10:21 ` ludovic@ludovic-brenta.org
                   ` (9 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: charlet at adacore dot com @ 2011-08-02 17:42 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from charlet at adacore dot com <charlet at adacore dot com> 2011-08-02 17:42:05 UTC ---
> I would not be so assertive as Arno.

Really? As the person who wrote this file and as the main tasking expert
of GNAT, I think I can be so assertive on this topic.

> It seems to me (but I may be wrong) that
> s-taprop-linux.adb really only calls glibc and libpthread, not the
> kernel, and
> therefore should be called s-taprop-glibc.adb.  It looks like the
> kernel-specific calls are all in
> s-osinte-{linux,freebsd,kfreebsd-gnu}.ads,

No, s-taprop-linux.adb is only meant to be used under Linux and only
guaranteed to work under linux.

Using this file on non linux systems is bound to cause troubles and is not a
good idea.

If you're looking for a file shared among several platforms with a known
API, then as I said, using s-taprop-posix.adb is the way to go. That's what
I would do anyway if I were to port GNAT to kfreebsd properly.

Arno


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

* Re: [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 17:31 ` ludovic@ludovic-brenta.org
@ 2011-08-02 17:42   ` Arnaud Charlet
  0 siblings, 0 replies; 17+ messages in thread
From: Arnaud Charlet @ 2011-08-02 17:42 UTC (permalink / raw)
  To: ludovic@ludovic-brenta.org; +Cc: gcc-bugs

> I would not be so assertive as Arno.

Really? As the person who wrote this file and as the main tasking expert
of GNAT, I think I can be so assertive on this topic.

> It seems to me (but I may be wrong) that
> s-taprop-linux.adb really only calls glibc and libpthread, not the
> kernel, and
> therefore should be called s-taprop-glibc.adb.  It looks like the
> kernel-specific calls are all in
> s-osinte-{linux,freebsd,kfreebsd-gnu}.ads,

No, s-taprop-linux.adb is only meant to be used under Linux and only
guaranteed to work under linux.

Using this file on non linux systems is bound to cause troubles and is not a
good idea.

If you're looking for a file shared among several platforms with a known
API, then as I said, using s-taprop-posix.adb is the way to go. That's what
I would do anyway if I were to port GNAT to kfreebsd properly.

Arno


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (3 preceding siblings ...)
  2011-08-02 17:42 ` charlet at adacore dot com
@ 2011-08-04 10:21 ` ludovic@ludovic-brenta.org
  2011-09-29 13:13 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: ludovic@ludovic-brenta.org @ 2011-08-04 10:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Ludovic Brenta <ludovic@ludovic-brenta.org> 2011-08-04 10:21:20 UTC ---
OK, here is another patch which changes GCC to use s-taprop-posix.ad[bs] on
GNU/kFreeBSD.  The changes in s-osinte-kfreebsd-gnu.ads are more extensive than
in the previous patch I sent to gcc-patches; they greatly reduce the difference
between s-osinte-kfreebsd-gnu.ads and s-osinte-freebsd.ads.

http://gcc.gnu.org/ml/gcc-patches/2011-08/msg00440.html


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (4 preceding siblings ...)
  2011-08-04 10:21 ` ludovic@ludovic-brenta.org
@ 2011-09-29 13:13 ` rguenth at gcc dot gnu.org
  2011-10-10 12:17 ` rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-09-29 13:13 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.5.4


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

* [Bug ada/49944] [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (5 preceding siblings ...)
  2011-09-29 13:13 ` rguenth at gcc dot gnu.org
@ 2011-10-10 12:17 ` rguenth at gcc dot gnu.org
  2012-07-02 12:49 ` [Bug ada/49944] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-10-10 12:17 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4


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

* [Bug ada/49944] [4.6/4.7/4.8 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (6 preceding siblings ...)
  2011-10-10 12:17 ` rguenth at gcc dot gnu.org
@ 2012-07-02 12:49 ` rguenth at gcc dot gnu.org
  2013-04-12 15:15 ` [Bug ada/49944] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2012-07-02 12:49 UTC (permalink / raw)
  To: gcc-bugs

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

Richard Guenther <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.5.4                       |4.6.4


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

* [Bug ada/49944] [4.7/4.8/4.9 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (7 preceding siblings ...)
  2012-07-02 12:49 ` [Bug ada/49944] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
@ 2013-04-12 15:15 ` jakub at gcc dot gnu.org
  2014-06-12 13:44 ` [Bug ada/49944] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2013-04-12 15:15 UTC (permalink / raw)
  To: gcc-bugs


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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.4                       |4.7.4

--- Comment #6 from Jakub Jelinek <jakub at gcc dot gnu.org> 2013-04-12 15:15:41 UTC ---
GCC 4.6.4 has been released and the branch has been closed.


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

* [Bug ada/49944] [4.7/4.8/4.9/4.10 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (8 preceding siblings ...)
  2013-04-12 15:15 ` [Bug ada/49944] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
@ 2014-06-12 13:44 ` rguenth at gcc dot gnu.org
  2014-12-19 13:34 ` [Bug ada/49944] [4.8/4.9/5 " jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-12 13:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49944

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.7.4                       |4.8.4

--- Comment #7 from Richard Biener <rguenth at gcc dot gnu.org> ---
The 4.7 branch is being closed, moving target milestone to 4.8.4.


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

* [Bug ada/49944] [4.8/4.9/5 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (9 preceding siblings ...)
  2014-06-12 13:44 ` [Bug ada/49944] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
@ 2014-12-19 13:34 ` jakub at gcc dot gnu.org
  2015-06-23  8:13 ` [Bug ada/49944] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  13 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-12-19 13:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49944

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.4                       |4.8.5

--- Comment #8 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.8.4 has been released.


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

* [Bug ada/49944] [4.8/4.9/5/6 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (10 preceding siblings ...)
  2014-12-19 13:34 ` [Bug ada/49944] [4.8/4.9/5 " jakub at gcc dot gnu.org
@ 2015-06-23  8:13 ` rguenth at gcc dot gnu.org
  2015-06-26 20:04 ` [Bug ada/49944] [4.9/5/6 " jakub at gcc dot gnu.org
  2015-06-26 20:33 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 17+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-06-23  8:13 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49944

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.8.5                       |4.9.3

--- Comment #9 from Richard Biener <rguenth at gcc dot gnu.org> ---
The gcc-4_8-branch is being closed, re-targeting regressions to 4.9.3.


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

* [Bug ada/49944] [4.9/5/6 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (11 preceding siblings ...)
  2015-06-23  8:13 ` [Bug ada/49944] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
@ 2015-06-26 20:04 ` jakub at gcc dot gnu.org
  2015-06-26 20:33 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:04 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49944

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


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

* [Bug ada/49944] [4.9/5/6 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)"
  2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
                   ` (12 preceding siblings ...)
  2015-06-26 20:04 ` [Bug ada/49944] [4.9/5/6 " jakub at gcc dot gnu.org
@ 2015-06-26 20:33 ` jakub at gcc dot gnu.org
  13 siblings, 0 replies; 17+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=49944

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


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

end of thread, other threads:[~2015-06-26 20:33 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-02 10:45 [Bug ada/49944] New: [4.5/4.6/4.7 regression] Bootstrapping on x86_64-pc-kfreebsd-gnu fails with "s-taprop.adb:856:10: "pthread_attr_setaffinity_np" is undefined (more references follow)" ludovic@ludovic-brenta.org
2011-08-02 10:51 ` [Bug ada/49944] " charlet at adacore dot com
2011-08-02 10:53   ` Arnaud Charlet
2011-08-02 10:54 ` charlet at adacore dot com
2011-08-02 17:31 ` ludovic@ludovic-brenta.org
2011-08-02 17:42   ` Arnaud Charlet
2011-08-02 17:42 ` charlet at adacore dot com
2011-08-04 10:21 ` ludovic@ludovic-brenta.org
2011-09-29 13:13 ` rguenth at gcc dot gnu.org
2011-10-10 12:17 ` rguenth at gcc dot gnu.org
2012-07-02 12:49 ` [Bug ada/49944] [4.6/4.7/4.8 " rguenth at gcc dot gnu.org
2013-04-12 15:15 ` [Bug ada/49944] [4.7/4.8/4.9 " jakub at gcc dot gnu.org
2014-06-12 13:44 ` [Bug ada/49944] [4.7/4.8/4.9/4.10 " rguenth at gcc dot gnu.org
2014-12-19 13:34 ` [Bug ada/49944] [4.8/4.9/5 " jakub at gcc dot gnu.org
2015-06-23  8:13 ` [Bug ada/49944] [4.8/4.9/5/6 " rguenth at gcc dot gnu.org
2015-06-26 20:04 ` [Bug ada/49944] [4.9/5/6 " jakub at gcc dot gnu.org
2015-06-26 20:33 ` jakub 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).