Analisando os fontes do instalador vi que a compilação está fixada somente para win32:
procedure TfrmPrincipal.LerConfiguracoes;
var
ArqIni: TIniFile;
I: Integer;
begin
ArqIni := TIniFile.Create(PathArquivoIni);
try
edtDirDestino.Text := ArqIni.ReadString('CONFIG', 'DiretorioInstalacao', ExtractFilePath(ParamStr(0)));
edtPlatform.ItemIndex := edtPlatform.Items.IndexOf('Win32');//edtPlatform.Items.IndexOf(ArqIni.ReadString('CONFIG', 'Plataforma', 'Win32'));
// edtDelphiVersion.ItemIndex := edtDelphiVersion.Items.IndexOf(ArqIni.ReadString('CONFIG', 'DelphiVersao', ''));
ckbFecharTortoise.Checked := ArqIni.ReadBool('CONFIG', 'FecharTortoise', True);
rdgDLL.ItemIndex := ArqIni.ReadInteger('CONFIG','DestinoDLL',0);
ckbCopiarTodasDll.Checked := ArqIni.ReadBool('CONFIG','CopiarTodasDLLs',False);
ckbBCB.Checked := ArqIni.ReadBool('CONFIG','C++Builder',False);
chkDeixarSomenteLIB.Checked := ArqIni.ReadBool('CONFIG','DexarSomenteLib',False);
if Trim(edtDelphiVersion.Text) = '' then
edtDelphiVersion.ItemIndex := 0;
edtDelphiVersionChange(edtDelphiVersion);
for I := 0 to frameDpk.Pacotes.Count - 1 do
frameDpk.Pacotes.Checked := ArqIni.ReadBool('PACOTES', frameDpk.Pacotes.Caption, False);
finally
ArqIni.Free;
end;
end;