vBulletin Search Engine Optimization
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| > > 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 |
| ||||
| Magnus Hagander wrote: >>>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? Not the worst solution. Regards, Andreas ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster |