Page 1 of 1

VC++ 2008 express compiling error

Posted: Sun Mar 30, 2008 7:39 am
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)

Posted: Sun Mar 30, 2008 9:45 am
by Masterhawk
Perhaps this thread will help you out...

http://forums.microsoft.com/MSDN/ShowPo ... 9&SiteID=1

Posted: Mon Mar 31, 2008 2:26 am
by imagination304
Thanks a lot,Masterhawk.