Hi there,I need to build an installer with some relatively large files, and I'd prefer not to use DiskSpanning, and keep everything as a single file.Is it possible to compile InnoSetup from source as a 64-bit application, to avoid the 2GB file size limit?--
Thanks!
You received this message because you are subscribed to the Google Groups "innosetup" group.
To unsubscribe from this group and stop receiving emails from it, send an email to innosetup+...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/innosetup/37873469-efef-459a-a2a0-007be51a16d7n%40googlegroups.com.
Is it possible to compile InnoSetup from source as a 64-bit application, to avoid the 2GB file size limit?
Valid values:yes or no
Default value:no
If set to yes, the disk spanning feature will be enabled. Instead of storing all the compressed file data inside Setup.exe, the compiler will split it into multiple Setup-*.bin files -- known as "slices" -- suitable for copying onto separate CD-ROMs or DVD-ROMs. Each generated slice contains a number in its name which indicates the disk onto which it should be copied. (For example, Setup-2.bin should be placed on disk 2.) The generated Setup.exe always goes on disk 1 along with the Setup-1*.bin file.
The size of each slice and the number of slices to create for each disk are determined by the values of the DiskSliceSize and SlicesPerDisk [Setup] section directives, respectively. Other disk spanning-related directives that you may want to tweak include DiskClusterSize and ReserveBytes.
Note that it is required that you set this directive to yes if the compressed size of your installation exceeds 4,200,000,000 bytes, even if you don't intend to place the installation onto multiple disks. (The installation will still function correctly if all the Setup-*.bin files are placed on the same disk.)
As of today, In the current help I see that DiskSpanning has been extended. Does this mean that it's available in 6.5.1, and we don't need 6.5.2?