gitian: Windows 64 bit support

- Build a 64 bit version of all dependencies
- Show 32/64 bit version in "About..." for x86
- Export 64-bit .exes and installer from gitian build
This commit is contained in:
Wladimir J. van der Laan
2014-01-20 13:38:50 +01:00
parent 77a1607ce8
commit f622232bcf
12 changed files with 451 additions and 362 deletions

View File

@@ -33,7 +33,16 @@ void AboutDialog::setModel(ClientModel *model)
{
if(model)
{
ui->versionLabel->setText(model->formatFullVersion());
QString version = model->formatFullVersion();
/* On x86 add a bit specifier to the version so that users can distinguish between
* 32 and 64 bit builds. On other architectures, 32/64 bit may be more ambigious.
*/
#if defined(__x86_64__)
version += " (64-bit)";
#elif defined(__i386__ )
version += " (32-bit)";
#endif
ui->versionLabel->setText(version);
}
}