|
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++.windows.32-bits - the command : "-L/exet:nt/su:windows"
-L/exet:nt/su:windows
the "exet:" command is not in the documentation.
exetype was there. or is this just a short form for it?
under dmc documentation in dmc website. we have :
-Nt Use old template name mangling scheme (obsolete)
-NT Set code segment name
its not there also. so what does it actually stands for.
/* i was trying to compile this.
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, "Hello World!", "Note", MB_OK);
return 0;
}
*/
and i do : dmc source.c
and i got a dos console behind the message box that came out.
so i search in forum. if anyone had experienced this prob in their win32 build
using dmc. and i ended up with :
/* this message was from the forum :
Sat, 2 Aug 2003 15:39:39 +0000 (UTC) Mr.E <Mr.E_member xx pathlink.com> writes:
Try the following compiler switch: -L/exet:nt/su:windows
This works fine for me.
Good Luck!
Feb 17 2006
inter9988 wrote:so, where do i get the info for compiler commands ? (-L/exet:nt/su:windows) Feb 17 2006
|