Compiling a VC++ project using gcc

  • Thread starter Thread starter mail_amity
  • Start date Start date
M

mail_amity

I am trying to compile a project , created in VC++, using gcc to create
a dll file.

The modifications that I hav to make are the options/flags which I
should supply during compilation.
Currently , following options are supplied to VC compiler

"
-nologo -MTd -W2 -Gm -GX -Zi -Od -D "WIN32" -D "_DEBUG"
-D "_WINDOWS" -D "MBCS" -D "USRDLL" -YX -Fd "some file path" -FD -GZ -D
-"TDLL_CORE"

"

kindly help me in getting alternatives for gcc, or atleast the
meanings, of these options/flags .

Thanks in advance
 
I am trying to compile a project , created in VC++, using gcc to create
a dll file.

The modifications that I hav to make are the options/flags which I
should supply during compilation.
Currently , following options are supplied to VC compiler

"
-nologo -MTd -W2 -Gm -GX -Zi -Od -D "WIN32" -D "_DEBUG"
-D "_WINDOWS" -D "MBCS" -D "USRDLL" -YX -Fd "some file path" -FD -GZ -D
-"TDLL_CORE"

Hi,

this lists all MSVC compiler options.

http://msdn.microsoft.com/library/en-us/vccore/html/_core_Compiler_Reference.asp?frame=true

--


Kind regards,
Bruno.
(e-mail address removed)
Remove only "_nos_pam"
 
Back
Top