www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2285] New: obj2asm uses \ instead of / on Linux

reply d-bugmail puremagic.com writes:
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.


-- 
Aug 14 2008
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2285


bugzilla digitalmars.com changed:

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





.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.


-- 
Aug 26 2008