|
From: Bastian M. <bma...@we...> - 2014-06-10 11:36:25
|
Am 10.06.2014 12:49, schrieb Tatsuro MATSUOKA: > ----- Original Message ----- >> From: Tatsuro MATSUOKA (snip) > > I also noticed that installer for 64 bit would like to install "C:\Program Files (x86)". > > However, this should be "C:\Program Files" for 64 bit binary. > > I have a look at gnuplot.iss but I cannot find where should be modified. > You can find the required information here: http://www.jrsoftware.org/ishelp/topic_setup_architecturesinstallin64bitmode.htm According to the docs, you should add following to the [Setup] section (untested): ArchitecturesAllowed=x64 ArchitecturesInstallIn64BitMode=x64 Note that with these modifications the script can no longer be used for 32bit installs. Since 32bit binaries run perfectly fine on 64bit Windows machines, I still fail to see why 64bit binaries are worth the huge extra effort right now. The only exception is the LFS support, but that can be handled differently, see Ethan's patch #675. Bastian > > Please make appropriate changes to the matters above. > > Tatsuro > |