in reply to Re^2: How to Compile v10 in Vista 64b ?
in thread How to Compile v10 in Vista 64b ?
Just comment out the last 3 lines below in the makefile. This was required for earlier versions if the compiler, but not for VC++ v9:
# The 64 bit Platform SDK compilers contain a runtime library that doe +sn't # include the buffer overrun verification code used by the /GS switch. # Since the code links against libraries that are compiled with /GS, t +his # "security cookie verification" must be included via bufferoverlow.li +b. !IF "$(WIN64)" == "define" LIBBASEFILES = $(LIBBASEFILES) bufferoverflowU.lib !ENDIF
A real fix would be to make it conditional upon both platform (64-bit) and compiler CCTYPE.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: How to Compile v10 in Vista 64b ?
by iBradleyAllen (Novice) on Mar 26, 2010 at 20:33 UTC | |
by BrowserUk (Patriarch) on Mar 26, 2010 at 21:17 UTC |