On Fri, Aug 13, 2010 at 1:02 AM, Walter Bright <span dir="ltr"><<a href="mailto:newshound2@digitalmars.com" target="_blank">newshound2@digitalmars.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
<div><div></div><div><br></div></div>
dmd does drive the linker. For example:<br>
<br></blockquote></div><br>Oops, sorry. I was thrown off the trail by the -L-l syntax for including a library. Gnu is my comfort zone and I went there without thinking.<br><br>$ dmd -w -wi -c main.d<br>$ dmd main.o -lphobos2<br>
Error: unrecognized switch '-lphobos2'<br>$ dmd main.o -L-lphobos2<br>(success)<br><br><br>