public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/87788] Support D on x86_64-apple-darwin*
       [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
@ 2020-11-29 12:48 ` cvs-commit at gcc dot gnu.org
  2020-11-29 21:10 ` cvs-commit at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-11-29 12:48 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #18 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:f59be8dfbd85a7f8face7340950503750a8bfddb

commit r11-5516-gf59be8dfbd85a7f8face7340950503750a8bfddb
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Sun Nov 29 12:49:52 2020 +0100

    d: Remove d_size_t from front-end sources (PR 87788)

    The typedef for d_size_t assumes that the implementation of the
    front-end is written in D itself, where size_t can map only to uint32_t
    or uint64_t.  As that is not the case for the current D front-end, the
    typedef should be removed. This would fix the bootstrap on targets where
    in C++ size_t is a long, such as darwin i386.

    Reviewed-on: https://github.com/dlang/dmd/pull/12008

    gcc/d/ChangeLog:

            PR d/87788
            * dmd/MERGE: Merge upsream dmd 45fa6cfd2.

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

* [Bug d/87788] Support D on x86_64-apple-darwin*
       [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
  2020-11-29 12:48 ` [Bug d/87788] Support D on x86_64-apple-darwin* cvs-commit at gcc dot gnu.org
@ 2020-11-29 21:10 ` cvs-commit at gcc dot gnu.org
  2020-11-29 21:14 ` egallager at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2020-11-29 21:10 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #19 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:2fdf75cb70d6bedd855205d6b05bbf6afac46730

commit r11-5521-g2fdf75cb70d6bedd855205d6b05bbf6afac46730
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Sat Nov 28 19:38:52 2020 +0100

    configure: Support building D front-end on *-*-darwin*

    The bootstrap has been confirmed to be succeeding, there's no need to
    set it as an unsupported language.

    ChangeLog:

            PR d/87788
            * configure.ac: Don't disable D for *-*-darwin*.
            * configure: Regenerate.

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

* [Bug d/87788] Support D on x86_64-apple-darwin*
       [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
  2020-11-29 12:48 ` [Bug d/87788] Support D on x86_64-apple-darwin* cvs-commit at gcc dot gnu.org
  2020-11-29 21:10 ` cvs-commit at gcc dot gnu.org
@ 2020-11-29 21:14 ` egallager at gcc dot gnu.org
  2020-11-29 21:22 ` ibuclaw at gdcproject dot org
  2020-11-29 21:27 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: egallager at gcc dot gnu.org @ 2020-11-29 21:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #20 from Eric Gallager <egallager at gcc dot gnu.org> ---
(In reply to CVS Commits from comment #19)
> The master branch has been updated by Iain Buclaw <ibuclaw@gcc.gnu.org>:
> 
> https://gcc.gnu.org/g:2fdf75cb70d6bedd855205d6b05bbf6afac46730
> 
> commit r11-5521-g2fdf75cb70d6bedd855205d6b05bbf6afac46730
> Author: Iain Buclaw <ibuclaw@gdcproject.org>
> Date:   Sat Nov 28 19:38:52 2020 +0100
> 
>     configure: Support building D front-end on *-*-darwin*
>     
>     The bootstrap has been confirmed to be succeeding, there's no need to
>     set it as an unsupported language.
>     
>     ChangeLog:
>     
>             PR d/87788
>             * configure.ac: Don't disable D for *-*-darwin*.
>             * configure: Regenerate.

This should get a note in the changes.html file for GCC 11

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

* [Bug d/87788] Support D on x86_64-apple-darwin*
       [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2020-11-29 21:14 ` egallager at gcc dot gnu.org
@ 2020-11-29 21:22 ` ibuclaw at gdcproject dot org
  2020-11-29 21:27 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-11-29 21:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #21 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
(In reply to Eric Gallager from comment #20)
> (In reply to CVS Commits from comment #19)
> >     ChangeLog:
> >     
> >             PR d/87788
> >             * configure.ac: Don't disable D for *-*-darwin*.
> >             * configure: Regenerate.
> 
> This should get a note in the changes.html file for GCC 11

I'll do this once have confirmed that libphobos is fit for purpose.

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

* [Bug d/87788] Support D on x86_64-apple-darwin*
       [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2020-11-29 21:22 ` ibuclaw at gdcproject dot org
@ 2020-11-29 21:27 ` ibuclaw at gdcproject dot org
  4 siblings, 0 replies; 5+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-11-29 21:27 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Buclaw <ibuclaw at gdcproject dot org> changed:

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

--- Comment #22 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Compiler side is fine, so I'll close this as resolved.  Moving work on getting
the compiler/runtime integration of libphobos ported to a new ticket in
pr98058.

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

end of thread, other threads:[~2020-11-29 21:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-87788-4@http.gcc.gnu.org/bugzilla/>
2020-11-29 12:48 ` [Bug d/87788] Support D on x86_64-apple-darwin* cvs-commit at gcc dot gnu.org
2020-11-29 21:10 ` cvs-commit at gcc dot gnu.org
2020-11-29 21:14 ` egallager at gcc dot gnu.org
2020-11-29 21:22 ` ibuclaw at gdcproject dot org
2020-11-29 21:27 ` 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).