Thread overview
[Issue 18193] module config is in file 'rt/config.d' which cannot be read
Jan 05, 2018
Eugene Wissner
Jan 05, 2018
Eugene Wissner
January 05, 2018
https://issues.dlang.org/show_bug.cgi?id=18193

--- Comment #1 from Eugene Wissner <belka@caraus.de> ---
https://github.com/dlang/druntime/pull/2032

--
January 05, 2018
https://issues.dlang.org/show_bug.cgi?id=18193

Eugene Wissner <belka@caraus.de> changed:

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

--
January 12, 2018
https://issues.dlang.org/show_bug.cgi?id=18193

--- Comment #2 from github-bugzilla@puremagic.com ---
Commits pushed to stable at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/10afa6944bb3ac479cbcabc5499a86136907b95f Fix issue 18193 - module config is in file 'rt/config.d' which cannot be read (edit)

src/rt isn't shipped with druntime's imports, so it can't be
imported directly from core.runtime. This PR fixes importing rt.config
from a public druntime module by replacing it with an extern
definition.

To reproduce the bug create a file that imports 'core.runtime' and
compile it with:
dmd -unittest -deps filename.d

The error is: /usr/include/dmd/druntime/import/core/runtime.d(653): Error: module config is in file 'rt/config.d' which cannot be read

https://github.com/dlang/druntime/commit/105d4a5ca279316665b3b796bf5ca7d249595caf Add test to the bug 18193

--
January 16, 2018
https://issues.dlang.org/show_bug.cgi?id=18193

--- Comment #3 from github-bugzilla@puremagic.com ---
Commits pushed to master at https://github.com/dlang/druntime

https://github.com/dlang/druntime/commit/10afa6944bb3ac479cbcabc5499a86136907b95f Fix issue 18193 - module config is in file 'rt/config.d' which cannot be read (edit)

https://github.com/dlang/druntime/commit/105d4a5ca279316665b3b796bf5ca7d249595caf Add test to the bug 18193

--