|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
digitalmars.D - Invert default for -op, use -nop
The dmd option -op makes dmd not to strip the object path when generating the object file. The default is to strip it. This can lead to problems if one object file is overwritten from another. E.g. you have to modules with the name 'mod.d' in different directories/packages. I think it would be better if the default chooses the way which does not make problems. I know I can configure it in dmd.cfg. But this means, first I have to trip into this pitfall. Sep 01 2006
On Fri, 01 Sep 2006 09:08:26 +0200, Frank Benoit wrote:The dmd option -op makes dmd not to strip the object path when generating the object file. The default is to strip it. This can lead to problems if one object file is overwritten from another. E.g. you have to modules with the name 'mod.d' in different directories/packages. I think it would be better if the default chooses the way which does not make problems. I know I can configure it in dmd.cfg. But this means, first I have to trip into this pitfall. Sep 01 2006
|