Compiling a VC++ project using gcc

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
 
G

Guest

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"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top