About Store Forum Documentation Contact



Post Reply 
Tutorial for Beginners
Author Message
runewake2 Offline
Member

Post: #16
RE: Tutorial for Beginners
Ok.
I went through and changed everything. I am still recieving the error:
'/fp:fast' and '/fp:except' command-line options are incompatible
I think it has something to do with what Zervox said, the floating point numbers but I have tried every option and nothing has worked...
11-21-2010 04:05 PM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #17
RE: Tutorial for Beginners
upload the vcproj or you could copy the EE tutorial project files, and use it as base, just delete the sln and rename tutorial.vcproj to your prefered name and then open the vcproj and compile/save the sln.
(This post was last modified: 11-21-2010 04:25 PM by Zervox.)
11-21-2010 04:24 PM
Find all posts by this user Quote this message in a reply
runewake2 Offline
Member

Post: #18
RE: Tutorial for Beginners
I have attached my project file. It's in the ZIP file.
If I can't figure out what the problem is converting the tutorials was my next plan.


Attached File(s)
.zip  The Projects.zip (Size: 1.5 KB / Downloads: 1)
(This post was last modified: 11-21-2010 04:29 PM by runewake2.)
11-21-2010 04:28 PM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #19
RE: Tutorial for Beginners
in project properties - C/C++ - Code generation

you've got at the bottom Enable floating point exception /fb except,

set it to no.
11-21-2010 04:38 PM
Find all posts by this user Quote this message in a reply
runewake2 Offline
Member

Post: #20
RE: Tutorial for Beginners
Well that worked. Now I have another problem:

1>LINK : warning LNK4031: no subsystem specified; CONSOLE assumed
1>libcmt.lib(crt0.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup
1>The Projects.exe : fatal error LNK1120: 1 unresolved externals
11-21-2010 04:44 PM
Find all posts by this user Quote this message in a reply
Zervox Offline
Member

Post: #21
RE: Tutorial for Beginners
project properties -> linker -> system
sub system
put the line

Windows (/SUBSYSTEM:WINDOWS)

in your project it said not set.
(This post was last modified: 11-21-2010 04:51 PM by Zervox.)
11-21-2010 04:49 PM
Find all posts by this user Quote this message in a reply
runewake2 Offline
Member

Post: #22
RE: Tutorial for Beginners
Thanks! That solved the problem.
11-21-2010 04:55 PM
Find all posts by this user Quote this message in a reply
Post Reply