Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - How do I suppress the creation of a map file?
Brilliant. Doh! Thanks :) "Arjan Knepper" <ask me.to> wrote in message news:b6r8lm$12jo$1 digitaldaemon.com.../NOMAP Matthew Wilson wrote: Apr 07 2003
That works nicely. For the benefit of others, when linking via DMC++, one needs to specify -L/nomap Thanks again Arjan "Arjan Knepper" <ask me.to> wrote in message news:b6r8lm$12jo$1 digitaldaemon.com.../NOMAP Matthew Wilson wrote: Apr 07 2003
I spoke too soon. The linker command does seem to accept the flag, and the "/nomap" sequence is included in the link command. Alas, map files are still build. Very annoying! "Matthew Wilson" <dmd synesis.com.au> wrote in message news:b6s1vt$1joq$1 digitaldaemon.com...That works nicely. For the benefit of others, when linking via DMC++, one needs to specify -L/nomap Thanks again Arjan "Arjan Knepper" <ask me.to> wrote in message news:b6r8lm$12jo$1 digitaldaemon.com.../NOMAP Matthew Wilson wrote: Apr 07 2003
Typical, using link.exe /NOMAP test.obj does not generate a .map using dmc -L/NOMAP test.cpp _does_ generate a .map. Strange... Using the IDDE, the command in the outputwindow looks like: link /NOI /DE /E /PACKF /XN /NT /ENTRY:WinMainCRTStartup /BAS:4194304 /A:512 /RC :.\XMS.RES XMS.LNK ren U:\TEST\XMS\REC\$SCW$.EXE XMS.EXE Errors: 0 Warnings: 0 Successful build And no map file is generated. Matthew Wilson wrote:I spoke too soon. The linker command does seem to accept the flag, and the "/nomap" sequence is included in the link command. Alas, map files are still build. Very annoying! "Matthew Wilson" <dmd synesis.com.au> wrote in message news:b6s1vt$1joq$1 digitaldaemon.com...That works nicely. For the benefit of others, when linking via DMC++, one needs to specify -L/nomap Thanks again Arjan "Arjan Knepper" <ask me.to> wrote in message news:b6r8lm$12jo$1 digitaldaemon.com.../NOMAP Matthew Wilson wrote: Apr 07 2003
Thanks for the info. I'll try and change the makefile to use LINK and not DMC "Arjan Knepper" <ask me.to> wrote in message news:b6s5vt$16e$1 digitaldaemon.com...Typical, using link.exe /NOMAP test.obj does not generate a .map using dmc -L/NOMAP test.cpp _does_ generate a .map. Strange... Using the IDDE, the command in the outputwindow looks like: link /NOI /DE /E /PACKF /XN /NT /ENTRY:WinMainCRTStartup /BAS:4194304 /A:512 /RC :.\XMS.RES XMS.LNK ren U:\TEST\XMS\REC\$SCW$.EXE XMS.EXE Errors: 0 Warnings: 0 Successful build And no map file is generated. Matthew Wilson wrote:I spoke too soon. The linker command does seem to accept the flag, and Apr 07 2003
"Matthew Wilson" <dmd synesis.com.au> wrote in message news:b6srvg$jhb$1 digitaldaemon.com...Thanks for the info. I'll try and change the makefile to use LINK and not DMC Apr 07 2003
"Jim Jennings" <jwjenn mindspring.com> wrote in message news:b6tbuv$uvf$1 digitaldaemon.com..."Matthew Wilson" <dmd synesis.com.au> wrote in message news:b6srvg$jhb$1 digitaldaemon.com...Thanks for the info. I'll try and change the makefile to use LINK and Apr 07 2003
|