public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC
       [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
@ 2020-03-12 11:58 ` jakub at gcc dot gnu.org
  2020-04-27 21:32 ` ibuclaw at gdcproject dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-03-12 11:58 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.3                         |9.4

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 9.3.0 has been released, adjusting target milestone.

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

* [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC
       [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
  2020-03-12 11:58 ` [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC jakub at gcc dot gnu.org
@ 2020-04-27 21:32 ` ibuclaw at gdcproject dot org
  2020-04-27 21:34 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-04-27 21:32 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Patch is in upstream, syncing it down to gdc.

https://github.com/dlang/druntime/pull/3071

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

* [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC
       [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
  2020-03-12 11:58 ` [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC jakub at gcc dot gnu.org
  2020-04-27 21:32 ` ibuclaw at gdcproject dot org
@ 2020-04-27 21:34 ` cvs-commit at gcc dot gnu.org
  2020-04-27 22:00 ` cvs-commit at gcc dot gnu.org
  2020-04-27 22:01 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-04-27 21:34 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Iain Buclaw <ibuclaw@gcc.gnu.org>:

https://gcc.gnu.org/g:6dffa67b46dc2d4deb25951f8b17e823f559cf3a

commit r10-8000-g6dffa67b46dc2d4deb25951f8b17e823f559cf3a
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Mon Apr 27 23:33:18 2020 +0200

    libphobos: Backport extern(C) bindings from druntime 2.091

    Merge upstream druntime 47688279.

    Reviewed-on: https://github.com/dlang/druntime/pull/3073

    Fixes: PR d/90718
    Fixes: PR d/90719

    libphobos/ChangeLog:

            * libdruntime/Makefile.am (DRUNTIME_DSOURCES_LINUX): Remove
            core/sys/linux/sys/netinet/tcp.d.
            * libdruntime/Makefile.in: Regenerate.

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

* [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC
       [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2020-04-27 21:34 ` cvs-commit at gcc dot gnu.org
@ 2020-04-27 22:00 ` cvs-commit at gcc dot gnu.org
  2020-04-27 22:01 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-04-27 22:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The releases/gcc-9 branch has been updated by Iain Buclaw
<ibuclaw@gcc.gnu.org>:

https://gcc.gnu.org/g:253b6edd2fc3499f1f2bd0f2d55cd47f852cfa09

commit r9-8548-g253b6edd2fc3499f1f2bd0f2d55cd47f852cfa09
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Mon Apr 27 23:51:50 2020 +0200

    libphobos: Fix struct layout of addrinfo on sparc-*-solaris*

    Comparing the struct addrinfo declarations in <netdb.h>

        struct addrinfo {
            ...
        #ifdef __sparcv9
            int _ai_pad;
        #endif /* __sparcv9 */
            ...
        };

    In the extern(C) core.sys bindings, there's a mismatch here; the system
    version has no _aid_pad member on 32-bit SPARC.

    libphobos/ChangeLog:

            PR d/90718
            * libdruntime/core/sys/posix/netdb.d (Solaris): Include _ai_pad
member
            in struct addrinfo only when targeting SPARC64.

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

* [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC
       [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2020-04-27 22:00 ` cvs-commit at gcc dot gnu.org
@ 2020-04-27 22:01 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-04-27 22:01 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Buclaw <ibuclaw at gdcproject dot org> changed:

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

--- Comment #7 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Done.

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

end of thread, other threads:[~2020-04-27 22:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-90718-4@http.gcc.gnu.org/bugzilla/>
2020-03-12 11:58 ` [Bug d/90718] libphobos.phobos_shared/std/socket.d FAILs on 32-bit Solaris/SPARC jakub at gcc dot gnu.org
2020-04-27 21:32 ` ibuclaw at gdcproject dot org
2020-04-27 21:34 ` cvs-commit at gcc dot gnu.org
2020-04-27 22:00 ` cvs-commit at gcc dot gnu.org
2020-04-27 22:01 ` ibuclaw at gdcproject 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).