Failure when compiling a big installer: Difference between revisions

From NSIS Wiki
Jump to navigationJump to search
m (Wikipedia python library)
 
m (Updated author and download links, and changed format of some pages.)
Line 14: Line 14:
:*Use a system with Windows 2000, XP or 2003
:*Use a system with Windows 2000, XP or 2003


Page author: virtlink
Page author: [[User:virtlink|virtlink]]

Revision as of 12:36, 23 April 2005

Issue
Compiler errosr when trying to compile very large installers.
Cause
NSIS can theoretically compile installers with a size up to 2 Gb. However, the system hardware and operating system may also limit the size.
Solution
If possible, it is always better to keep large datafiles separate from the installer. This will generally improve performance. You can decompress external files using plug-ins such as ExtractDLL or ZipDLL.
If you want everything to be in one executable file, try the following:
  • Use SetCompression /SOLID
  • Decrease the compression level or dictionary size
  • Try changing the value of FileBufSize
  • Use a system with Windows 2000, XP or 2003

Page author: virtlink