VC++ 2008 express compiling error

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
imagination304
Posts: 56
Joined: Mon Jan 09, 2006 2:02 am

VC++ 2008 express compiling error

Post by imagination304 »

Hi all,

(Please correct the title 2000 to 2008 - typing mistake :( )
I formated my harddisk and installed VC++ 2008 express.
When I run the following prg to build a console exe, it returns error.
Do I need to install platform sdk or directX SDK?
How to check whether it is console exe or not?

Any ideas?

Thanks in advance

Code: Select all

#include <iostream>

int main()
{
	std::cout << "Hello, world!" << std::endl;
	return 0;
}

Build log:

Code: Select all

Command Lines
=============
Creating temporary file "e:\0Vcpp\start\start\Debug\RSP0000043484672.rsp" with contents
[
/out:.\Debug\start.exe.embed.manifest /notify_update /manifest

.\Debug\start.exe.intermediate.manifest
]
Creating command line "mt.exe @e:\0Vcpp\start\start\Debug\RSP0000043484672.rsp /nologo"

Output Window
=============
Embedding manifest...
.\Debug\start.exe.intermediate.manifest : general error c1010070: Failed to load and parse the manifest. {q~0H

Results
========
Build log was saved at "file://e:\0Vcpp\start\start\Debug\BuildLog.htm"
start - 1 error(s), 0 warning(s)
Hopes everyone here all success!!!
Masterhawk
Posts: 299
Joined: Mon Nov 27, 2006 6:52 pm
Location: GERMANY
Contact:

Post by Masterhawk »

Perhaps this thread will help you out...

http://forums.microsoft.com/MSDN/ShowPo ... 9&SiteID=1
Image
imagination304
Posts: 56
Joined: Mon Jan 09, 2006 2:02 am

Post by imagination304 »

Thanks a lot,Masterhawk.
Hopes everyone here all success!!!
Post Reply