Page 1 of 1

building with VS2010 brings up an error

Posted: Fri Jul 20, 2012 6:51 am
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.

Posted: Fri Jul 20, 2012 11:31 am
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.

Posted: Fri Jul 20, 2012 7:18 pm
by qoshinator
Do you want to add this info to a build-vs2010-readme.txt file in the sources folder?