Thread overview
[Issue 17781] printing "Shared libraries are not yet supported on OSX." should be optional
Oct 03, 2017
Walter Bright
Oct 03, 2017
Walter Bright
Oct 09, 2017
Martin Nowak
Dec 17, 2022
Iain Buclaw
October 03, 2017
https://issues.dlang.org/show_bug.cgi?id=17781

Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bugzilla@digitalmars.com

--- Comment #1 from Walter Bright <bugzilla@digitalmars.com> ---
If they work 100%, why make the message optional, instead of just eliminating it?

--
October 03, 2017
https://issues.dlang.org/show_bug.cgi?id=17781

--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> ---
There are two messages:

        // no support for multiple images yet
        // take the sections from the last static image which is the executable
        if (_isRuntimeInitialized)
        {
            fprintf(stderr, "Loading shared libraries isn't yet supported on
Darwin.\n");
            return;
        }
        else if (_sections.modules.ptr !is null)
        {
            fprintf(stderr, "Shared libraries are not yet supported on
Darwin.\n");
        }

Neither match the issue subject. Which message are you referring to, or is it both?

--
October 09, 2017
https://issues.dlang.org/show_bug.cgi?id=17781

Martin Nowak <code@dawg.eu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |code@dawg.eu
           Severity|regression                  |normal

--- Comment #3 from Martin Nowak <code@dawg.eu> ---
Dynamic loading of shared libraries are still not fully implemented, e.g.
missing GC/EH (TLS?) support.
I think Timothee's comment was a typo and he meant not 100% supported.

Also see issue 11478

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=17781

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--