[Issue 4814] New: rdmd: Doesn't rebuild when using -of and turning -L--export-dynamic on or off

d-bugmail at puremagic.com d-bugmail at puremagic.com
Sat Sep 4 22:01:30 PDT 2010


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: nobody at puremagic.com
        ReportedBy: cbkbbejeap at mailinator.com


--- Comment #0 from Nick Sabalausky <cbkbbejeap at mailinator.com> 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: -------


More information about the Digitalmars-d-bugs mailing list