www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 10255] New: When creating lib files, dmd no longer splits module into multiple obj files

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255

           Summary: When creating lib files, dmd no longer splits module
                    into multiple obj files
           Product: D
           Version: D2
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: regression
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: bugzilla digitalmars.com



11:25:29 PDT ---
Given:
----- foo.d --------
void foo1() { }
void foo2() { }
--------------------

and compiling with:

  dmd -lib foo.d
  lib -l foo.lib

will create the .lst file:
-------------------
Publics by name        module
_D3foo12__ModuleInfoZ            foo
_D3foo15__unittest_failFiZv      foo
_D3foo4foo1FZv                   foo
_D3foo4foo2FZv                   foo
_D3foo7__arrayZ                  foo
_D3foo8__assertFiZv              foo


Publics by module
foo
    _D3foo12__ModuleInfoZ             _D3foo15__unittest_failFiZv
    _D3foo4foo1FZv                    _D3foo4foo2FZv
    _D3foo7__arrayZ                   _D3foo8__assertFiZv
---------------------
showing that they are all put in one module. However,

  dmd -c -multiobj foo.d

will correctly create multiple .obj files.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jun 03 2013
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255


Rainer Schuetze <r.sagitario gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |r.sagitario gmx.de



PDT ---
It seems there are actually multiple object files with the same name in the
library which are merged in the list file. If you extract a module it only
contains some of the listed symbols, not all. Opening the lib in IDA also
reveals multiple files with the same name.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Jun 11 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255




15:48:32 PDT ---
https://github.com/D-Programming-Language/dmd/pull/2651

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 10 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255




Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/35d857ea2a612bafe3321c230db320c6dbddfd48
fix Issue 10255 - When creating lib files, dmd no longer splits module into
multiple obj files

https://github.com/D-Programming-Language/dmd/commit/0e6d523e9a783eae00c0008db8ed849d7f953887


fix Issue 10255 - When creating lib files, dmd no longer splits module i...

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 10 2013
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255




Commit pushed to dmd-1.x at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/605ba81b50f4227e420937c1893b0521796fdb5b


fix Issue 10255 - When creating lib files, dmd no longer splits module i...

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 11 2013
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=10255


Walter Bright <bugzilla digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
            Version|D2                          |D1 & D2
         Resolution|                            |FIXED


-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Oct 11 2013