digitalmars.D.learn - No map file?
- Frank Benoit (3/3) Mar 23 2009 How can i make DMD (link/optlink) not to generate a map file?
- torhu (2/5) Mar 23 2009 I don't know, but bud manages this somehow, so Derek Parnell might know.
- Jarrett Billingsley (3/11) Mar 23 2009 rm *.map
- Derek Parnell (9/14) Mar 23 2009 You can't using dmd. It doesn't generate the right linker options for yo...
- Frank Benoit (3/17) Mar 25 2009 Ok, so i created http://d.puremagic.com/issues/show_bug.cgi?id=2760
How can i make DMD (link/optlink) not to generate a map file? -L/NOM or -LNOMAP both seem not work.
Mar 23 2009
On 23.03.2009 10:02, Frank Benoit wrote:How can i make DMD (link/optlink) not to generate a map file? -L/NOM or -LNOMAP both seem not work.I don't know, but bud manages this somehow, so Derek Parnell might know.
Mar 23 2009
On Mon, Mar 23, 2009 at 11:11 AM, torhu <no spam.invalid> wrote:On 23.03.2009 10:02, Frank Benoit wrote:rm *.map :PHow can i make DMD (link/optlink) not to generate a map file? -L/NOM or -LNOMAP both seem not work.I don't know, but bud manages this somehow, so Derek Parnell might know.
Mar 23 2009
On Mon, 23 Mar 2009 10:02:28 +0100, Frank Benoit wrote:How can i make DMD (link/optlink) not to generate a map file? -L/NOM or -LNOMAP both seem not work.You can't using dmd. It doesn't generate the right linker options for you to avoid the map file. I do it in Bud by not having DMD invoke the linker, instead I have Bud invoke the linker with the right options. The easiest way is to delete the .map files after compiling. -- Derek Parnell Melbourne, Australia skype: derek.j.parnell
Mar 23 2009
Derek Parnell schrieb:On Mon, 23 Mar 2009 10:02:28 +0100, Frank Benoit wrote:Ok, so i created http://d.puremagic.com/issues/show_bug.cgi?id=2760 Thanks for the answer.How can i make DMD (link/optlink) not to generate a map file? -L/NOM or -LNOMAP both seem not work.You can't using dmd. It doesn't generate the right linker options for you to avoid the map file. I do it in Bud by not having DMD invoke the linker, instead I have Bud invoke the linker with the right options. The easiest way is to delete the .map files after compiling.
Mar 25 2009