[wxPython-dev] wxPython for windows 64-bit
Robin Dunn
robin at alldunn.com
Tue Nov 13 16:04:59 PST 2007
Brandon Pedersen wrote:
> Ok, so I am very new to compiling with msvc...actually C in general...never
> really programmed using C...anywho, so I read some of those posts and it
> talked about when linking the files you need to use an extra command line
> parameter of bufferoverflowU.lib to overcome the missing __security_cookie
> thing....so instead of like "link file.cpp", it should be "link file.cpp
> bufferoverflowU.lib"....now I am wondering how I can do that since I am just
> using nmake to do all the work...is there some file I need to change so that
> that parameter is added to all the linking steps? Sorry for my
> ignorance...thanks for your help
Looking at config.vc it looks like it expects you to set TARGET_CPU (set
it to either AMD64 or IA64 on the nmake command-line) if it's not x86,
so maybe that turns on some linker functionality that will take care of
this for you. Otherwise you can try setting LDFLAGS to have things
added to the linker command-line.
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!
More information about the wxpython-dev
mailing list