[Issue 12116] dmd -op -od broken

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Sun Jan 8 04:50:41 PST 2017


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

--- Comment #7 from Timothee Cour <timothee.cour2 at gmail.com> ---
For windows:

 > Please do not forget about Windows - how would you propose handling `dmd -c
-od=mydir -op C:\bla.d D:\bla.d` then? ;)

=> creates:
mydir/C/bla.o
mydir/D/bla.o

but again, as in the proposal user can also write:

dmd -c -od=mydir -op=C:\ C:\bla.d D:\bla.d
=> creates:
mydir/bla.o
mydir/D/bla.o

it's nice and consistent. Another possiblity is to disallow the
combo(windows+op+absolute files), but that doesn't seem necessary.

But whatever is decided on windows, hopefully we can at least do what's
proposed here on mac/linux.

--


More information about the Digitalmars-d-bugs mailing list