building with VS2010 brings up an error

English main discussion
Post Reply
  • Author
  • Message
Offline
Posts: 36
Joined: Wed Apr 11, 2012 8:05 pm

building with VS2010 brings up an error

Post by qoshinator »

See here for info:
http://connect.microsoft.com/VisualStud ... t-nowin98/

Also, the /GS flag is on by default in VS2010, which causes some other errors.

Offline
Site Admin
Posts: 6311
Joined: Thu Jul 06, 2006 7:20 am

Post by Instructor »

Compile AkelPad sources when project file was converted:

1. To remove errors "___security_cookie"
set /GS- flag. To set this compiler option in the Visual Studio development
environment:
a. Open the project's Property Pages dialog box.
b. Click the C/C++ folder.
c. Click the Code Generation property page.
d. Modify the Buffer Security Check property.

2. Turn off manifest creation /MANIFEST:NO
a. Open the project's Property Pages dialog box.
b. Expand the Configuration Properties node.
c. Expand the Linker node.
d. Select the Manifest File property page.
e. Modify the Generate Manifest property.

3. To compile Debug version replace libc.lib to libcmt.lib.

Offline
Posts: 36
Joined: Wed Apr 11, 2012 8:05 pm

Post by qoshinator »

Do you want to add this info to a build-vs2010-readme.txt file in the sources folder?
Post Reply