runewake2
Member
|
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 |
|
Zervox
Member
|
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 |
|
Zervox
Member
|
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 |
|
runewake2
Member
|
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 |
|
Zervox
Member
|
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 |
|
runewake2
Member
|
RE: Tutorial for Beginners
Thanks! That solved the problem.
|
|
11-21-2010 04:55 PM |
|