954,499 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

installation error

Hi!

I was wondering if someone could help me figure out what may be wrong in my installing process or in my compiler...

I was installing Visual Studio 6.0 C++ and everything went well until I started compiling and this is what it shows:

--------------------Configuration: try - Win32 Debug--------------------
Linking...
C:\Program Files\Microsoft Visual Studio\VC98\LIB\uuid.lib : fatal error LNK1113: invalid machine type
Error executing link.exe.

try.exe - 1 error(s), 0 warning(s)


does anyone knows how to remedy this problem?

thank you!

jam7cacci
Light Poster
32 posts since Nov 2006
Reputation Points: 10
Solved Threads: 0
 

Do you have a 64-bit machine?

Have you tried to restart Visual Studio and build again your solution?

Also, I know that a "Clean Solution / Rebuild Solution" solves a lot of problems.

You can click on the error message and press F1. If you're lucky, that will lead you to more info on the error. And also, Google is your friend!

GDICommander
Posting Whiz in Training
211 posts since Jun 2008
Reputation Points: 72
Solved Threads: 26
 

i tried but it wont work... i dont have 64-bit machine :(

jam7cacci
Light Poster
32 posts since Nov 2006
Reputation Points: 10
Solved Threads: 0
 

Maybe you have a specific setting, a flag or something. Check this page:

http://social.microsoft.com/Forums/en-US/vcgeneral/thread/d2677732-d756-42e5-b2f1-5b040819c037

Don't forget that a re-install may solve the problem.

GDICommander
Posting Whiz in Training
211 posts since Jun 2008
Reputation Points: 72
Solved Threads: 26
 

If you're using Windows Vista, it might be a better idea to use one of Microsoft's free available Express Editions, otherwise reinstalling the application might fix the problem ...

tux4life
Nearly a Posting Maven
2,350 posts since Feb 2009
Reputation Points: 2,134
Solved Threads: 243
 

See this address for the express edition, I recommend it instead of VC++ 6.0:

http://www.microsoft.com/Express/

GDICommander
Posting Whiz in Training
211 posts since Jun 2008
Reputation Points: 72
Solved Threads: 26
 

Srry, I forgot to post the link :) ...

tux4life
Nearly a Posting Maven
2,350 posts since Feb 2009
Reputation Points: 2,134
Solved Threads: 243
 

See this address for the express edition, I recommend it instead of VC++ 6.0:

http://www.microsoft.com/Express/

got it! thanks... now another problem... haha... sorry... hmmm why can i not build it? the icon for build is in gray and unclickable...

thanks again for the big help!

jam7cacci
Light Poster
32 posts since Nov 2006
Reputation Points: 10
Solved Threads: 0
 

Have you created a new project or have you just opened the file? Opening the file only prevents you from building the executable. You must create a project.

GDICommander
Posting Whiz in Training
211 posts since Jun 2008
Reputation Points: 72
Solved Threads: 26
 
Have you created a new project or have you just opened the file? Opening the file only prevents you from building the executable. You must create a project.


> That's right !

tux4life
Nearly a Posting Maven
2,350 posts since Feb 2009
Reputation Points: 2,134
Solved Threads: 243
 

waaahhh.... i really dont understand the one you suggested me. I was trying to have a simple output for trial but it wont work....

#include <iostream.h>

void main()
{
	char name[20];

	cout << "what's your name? ";
	cin  >> name;

	cout << "thank you " << name;
}


then this is the result:

------ Build started: Project: tryanother, Configuration: Debug Win32 ------
Compiling...
sanamagwork.cpp
.\sanamagwork.cpp(1) : fatal error C1083: Cannot open include file: 'iostream.h': No such file or directory
Build log was saved at "file://c:\Documents and Settings\Administrator\My Documents\Visual Studio 2008\Projects\tryanother\Debug\BuildLog.htm"
tryanother - 1 error(s), 0 warning(s)
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========

jam7cacci
Light Poster
32 posts since Nov 2006
Reputation Points: 10
Solved Threads: 0
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You