Ticket #15 (closed defect: fixed)

Opened 6 years ago

Last modified 6 years ago

Using basename for GDC

Reported by: gmiller Assigned to: derek
Priority: Important Component: core
Version: 3.0 Severity: major
Keywords: Cc:

Description

This was submitted as a patch in Dec 2005 in the forum but did not make it into the 2.10 build.

Index: source.d =================================================================== --- source.d (revision 40) +++ source.d (working copy) @@ -209,6 +209,11 @@

}

} }

+ version(GNU) + { + /* GDC places object files in the directory from which it is called */ + mObjectName = getBaseName(mObjectName); + }

mBuildNumber = -1;

Change History

04/11/06 00:32:30 changed by Derek Parnell

Now implemented in v2.11.

05/22/06 02:43:34 changed by Derek Parnell

  • status changed from new to closed.
  • version changed from 2.10 to 3.0.
  • resolution set to fixed.

This functionality is now controlled by a configuration item in the build.cfg file...

INT:UseModBaseName = Yes