|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D 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 electronics |
digitalmars.D.bugs - [Issue 3062] New: -run compiler switch ignores -I option
http://d.puremagic.com/issues/show_bug.cgi?id=3062 Summary: -run compiler switch ignores -I option Product: D Version: 2.030 Platform: x86 OS/Version: Windows Status: NEW Keywords: rejects-valid Severity: normal Priority: P2 Component: DMD AssignedTo: nobody puremagic.com ReportedBy: maxmo pochta.rudmd -run tmp.d -w -I.. Jun 11 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3062 Frits van Bommel <fvbommel wxs.nl> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |fvbommel wxs.nl Resolution| |INVALID --- Comment #1 from Frits van Bommel <fvbommel wxs.nl> 2009-06-11 06:30:51 PDT --- This is not a bug. -run is special in that it "eats" everything after it. The first argument afterwards is interpreted as a source file, the rest as arguments to pass to the program it compiles to (and are therefore not used by dmd itself). What you want to do is "dmd -W -I.. -run tmp.d". -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- Jun 11 2009
|