August 15, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2285

           Summary: obj2asm uses \ instead of / on Linux
           Product: D
           Version: 1.034
          Platform: Other
        OS/Version: Linux
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla@digitalmars.com
        ReportedBy: destructionator@gmail.com


If I run the linux version of obj2asm that is included in the dmd.zip on a .obj file, the output includes a message like the following:

;Can't open source file '.\start.d'

That should be ./start.d on the Linux version.


-- 

August 26, 2008
http://d.puremagic.com/issues/show_bug.cgi?id=2285


bugzilla@digitalmars.com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID




------- Comment #1 from bugzilla@digitalmars.com  2008-08-26 02:13 -------
.obj files can only be compiled on Windows, and the source file name embedded in the .obj file will naturally refer to the source file on Windows as it existed when the .obj file was created.

I believe this is correct behavior.


--