public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/98058] New: libphobos: Support building on *-*-darwin*
@ 2020-11-29 21:25 ibuclaw at gdcproject dot org
  2020-11-29 21:30 ` [Bug d/98058] " iains at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-11-29 21:25 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 98058
           Summary: libphobos: Support building on *-*-darwin*
           Product: gcc
           Version: 11.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: d
          Assignee: ibuclaw at gdcproject dot org
          Reporter: ibuclaw at gdcproject dot org
  Target Milestone: ---

This is in continuation of pr87788, but this focuses on issues building the
standard library.

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

* [Bug d/98058] libphobos: Support building on *-*-darwin*
  2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
@ 2020-11-29 21:30 ` iains at gcc dot gnu.org
  2020-12-19 21:17 ` ibuclaw at gdcproject dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: iains at gcc dot gnu.org @ 2020-11-29 21:30 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Sandoe <iains at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
   Last reconfirmed|                            |2020-11-29
                 CC|                            |iains at gcc dot gnu.org
             Status|UNCONFIRMED                 |NEW

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

* [Bug d/98058] libphobos: Support building on *-*-darwin*
  2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
  2020-11-29 21:30 ` [Bug d/98058] " iains at gcc dot gnu.org
@ 2020-12-19 21:17 ` ibuclaw at gdcproject dot org
  2021-04-19 17:29 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2020-12-19 21:17 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98058
Bug 98058 depends on bug 98067, which changed state.

Bug 98067 Summary: [11 Regression] d: ICE in in force_decl_die, at dwarf2out.c:26197 with -gdwarf-2 -gstrict-dwarf
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=98067

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

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

* [Bug d/98058] libphobos: Support building on *-*-darwin*
  2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
  2020-11-29 21:30 ` [Bug d/98058] " iains at gcc dot gnu.org
  2020-12-19 21:17 ` ibuclaw at gdcproject dot org
@ 2021-04-19 17:29 ` cvs-commit at gcc dot gnu.org
  2021-05-04 12:32 ` rguenth at gcc dot gnu.org
  2022-11-23  0:47 ` vital.had at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-04-19 17:29 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 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:6eae7549b8a350b92435be904efed195bd190bae

commit r11-8248-g6eae7549b8a350b92435be904efed195bd190bae
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Mon Apr 19 14:48:32 2021 +0200

    libphobos: Add Thread/Fiber support code for Darwin (PR98058)

    libphobos/ChangeLog:

            PR d/98058
            * configure: Regenerate.
            * libdruntime/Makefile.am (DRUNTIME_DSOURCES_DARWIN): Add
            core/sys/darwin/config.d
            * libdruntime/Makefile.in: Regenerate.
            * libdruntime/config/powerpc/switchcontext.S: Implement
            fiber_switchContext for __MACH__.
            * libdruntime/config/x86/switchcontext.S: Likewise.
            * libdruntime/core/sys/darwin/config.d: New file.
            * libdruntime/core/thread/fiber.d (Fiber.getThis): Mark noinline.
            (UnsafeFiberMigration): Define for OSX/X86 and OSX/X86_64.
            * libdruntime/core/thread/osthread.d (callWithStackShell): Add
inline
            assembler implementation for X86, X86_64, PPC, and PPC64.
            * libdruntime/core/thread/threadbase.d (ThreadBase.getThis): Mark
            noinline.
            * libdruntime/gcc/deh.d (FuncTable): Remove definition.
            * m4/druntime/os.m4 (DRUNTIME_OS_MINFO_BRACKETING): Check for right
            bracket symbol on darwin* targets.
            * testsuite/libphobos.thread/fiber_guard_page.d: Update test to
            support ucontext-based Fibers.

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

* [Bug d/98058] libphobos: Support building on *-*-darwin*
  2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
                   ` (2 preceding siblings ...)
  2021-04-19 17:29 ` cvs-commit at gcc dot gnu.org
@ 2021-05-04 12:32 ` rguenth at gcc dot gnu.org
  2022-11-23  0:47 ` vital.had at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-05-04 12:32 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

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

* [Bug d/98058] libphobos: Support building on *-*-darwin*
  2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
                   ` (3 preceding siblings ...)
  2021-05-04 12:32 ` rguenth at gcc dot gnu.org
@ 2022-11-23  0:47 ` vital.had at gmail dot com
  4 siblings, 0 replies; 6+ messages in thread
From: vital.had at gmail dot com @ 2022-11-23  0:47 UTC (permalink / raw)
  To: gcc-bugs

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

Sergey Fedorov <vital.had at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |vital.had at gmail dot com

--- Comment #2 from Sergey Fedorov <vital.had at gmail dot com> ---
What is the current status of libphobos on powerpc*-apple-darwin?

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

end of thread, other threads:[~2022-11-23  0:47 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-29 21:25 [Bug d/98058] New: libphobos: Support building on *-*-darwin* ibuclaw at gdcproject dot org
2020-11-29 21:30 ` [Bug d/98058] " iains at gcc dot gnu.org
2020-12-19 21:17 ` ibuclaw at gdcproject dot org
2021-04-19 17:29 ` cvs-commit at gcc dot gnu.org
2021-05-04 12:32 ` rguenth at gcc dot gnu.org
2022-11-23  0:47 ` vital.had at gmail dot com

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