https://issues.dlang.org/show_bug.cgi?id=16546

Vladimir Panteleev <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
           Hardware|x86                         |All
         Resolution|---                         |WONTFIX
                 OS|Linux                       |All

--- Comment #2 from Vladimir Panteleev <[email protected]> ---
As far as I can tell, I don't think a change in the language is needed. If you
wish to link against a library which has a dependency, then specify the
dependency in the same module. I.e. if in you example libbar depends on libfoo,
change mod2.d to:

module mod2;
pragma(lib,"foo");
pragma(lib,"bar");

--

Reply via email to