Programming C# C++ (7) Delphi (619) .NET (2) Database (72) Delphi IDE (90) Network (39) Printing (3) Strings (12) VCL (83) Windows with Delphi (280) Java (8) JavaScript (27) perl (9) php (4) VBScript (1) Visual Basic (1)
Exchange Links About this site Links to us 
|
Linker msg: RLINK32: Out of memory!
This article has not been rated yet. After reading, feel free to leave comments and rate it.
Question:
I try to port a large 16bit (Delphi 1) application to a 32bit (Delphi 3).
- Compile(build) is ok.
- Linking doesn't work: RLINK32: Out of memory!
Answer:
This is a bogus error message, caused because you've got 16-bit .RES files that you're trying to link into your 32-bit application. You can delete the project's .RES file; any others that you have you'll have to convert to 32-bit.
Comments:
|