Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

LNK1102 Out of Memory

Status
Not open for further replies.

PaulCloke

Programmer
Mar 18, 2002
2
US
I keep getting a

LINK : fatal error LNK1102: out of memory

error on a fairly large C++ project.

I've obviously
-read the help,
-set up a much bigger swap file
-checked memory at the critical time
(still 0.5Gb left)

Has anyone any other pointers as to what sorts of thing causes this.

Thanks

Paul Cloke
 
Looks like the usual case where you use the new but dont't delete your variables...

can't be sure without the code ...

Try put some code in remarks and executing it... If it works... Change the /* */ to another place until it crash again... Then you'll know where the error is...

If the code isn't to big... Try showing it to us...

 
Sorry, I didn't make it clear this was an error
in the linker.

So the code is not executable, as it fails to link
with this error (LNK1102).
 
You dont have enough memory on your hard disk. At least that is how I saw this error. Clean up your hard drives (mainly the one which vc++ uses the temp directory on.

matt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top