http://d.puremagic.com/issues/show_bug.cgi?id=4814
Summary: rdmd: Doesn't rebuild when using -of and turning
-L--export-dynamic on or off
Product: D
Version: D1 & D2
Platform: Other
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: Phobos
AssignedTo: [email protected]
ReportedBy: [email protected]
--- Comment #0 from Nick Sabalausky <[email protected]> 2010-09-04
22:01:10 PDT ---
$ cat test.d
void func()
{
assert(1 == 0);
}
void main()
{
func();
}
$ rdmd --chatty -oftest test
[compiles, shows no symbols in stack trace]
$ rdmd --chatty -oftest -L--export-dynamic test
[calls dmd to check deps but does *not* recompile,
still no symbols in stack trace]
$ touch test.d
$ rdmd --chatty -oftest -L--export-dynamic test
[recompiles, now shows symbols in stack trace]
$ rdmd --chatty -oftest test
[calls dmd to check deps but does *not* recompile,
still shows symbols in stack trace]
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------