View Single Post

   
  #1 (permalink)  
Old 04-17-2008, 06:03 PM
Magnus Hagander
 
Posts: n/a
Default Re: Visual C++ 2005

> > Sounds like distri bloating, for no benefit.
> >
> > Best would be if this manifest stuff could be omitted totally; we
> > probably could link to the old msvcrt then.

>
> The bloat is only about 1.5Mb which isn't too bad, but having


Or you can just link statically and then only pull in the parts you
need?

> just watched literally thousands of warnings go past when
> compiling wxWidgets about all sorts of stuff like strdup
> being deprecated, I really can't be bothered to carry on.
> Perhaps when wx is cleaned up...


For that, you need a:
#define _CRT_SECURE_NO_DEPRECATE

Or as a /D in your build file.

Should make them all go away.

See for example
http://msdn.microsoft.com/msdnmag/is...efault.aspx?si
de=true and
http://msdn.microsoft.com/vstudio/to...VS2005pro/Fram
ework/CPlusSafeLibraries.htm.


//Magnus

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend

Reply With Quote