05fc3aef53
Replace the current license disclaimer in files by a SPDX-License-Identifier. Files that have to be modified by hand are modified. License files are organized under LICENSES directory. Task-number: QTBUG-67283 Change-Id: Id880c92784c40f3bbde861c0d93f58151c18b9f1 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Lars Knoll <lars.knoll@qt.io> Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
38 lines
1.7 KiB
C++
38 lines
1.7 KiB
C++
// Copyright (C) 2017 Intel Corporation.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include <QCoreApplication>
|
|
#include <QOperatingSystemVersion>
|
|
#include <QSysInfo>
|
|
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QCoreApplication a(argc, argv);
|
|
|
|
printf("QSysInfo::WordSize = %d\n", QSysInfo::WordSize);
|
|
printf("QSysInfo::ByteOrder = QSysInfo::%sEndian\n",
|
|
QSysInfo::ByteOrder == QSysInfo::LittleEndian ? "Little" : "Big");
|
|
printf("QSysInfo::buildCpuArchitecture() = %s\n", qPrintable(QSysInfo::buildCpuArchitecture()));
|
|
printf("QSysInfo::currentCpuArchitecture() = %s\n", qPrintable(QSysInfo::currentCpuArchitecture()));
|
|
printf("QSysInfo::buildAbi() = %s\n", qPrintable(QSysInfo::buildAbi()));
|
|
printf("QSysInfo::kernelType() = %s\n", qPrintable(QSysInfo::kernelType()));
|
|
printf("QSysInfo::kernelVersion() = %s\n", qPrintable(QSysInfo::kernelVersion()));
|
|
printf("QSysInfo::productType() = %s\n", qPrintable(QSysInfo::productType()));
|
|
printf("QSysInfo::productVersion() = %s\n", qPrintable(QSysInfo::productVersion()));
|
|
printf("QSysInfo::prettyProductName() = %s\n", qPrintable(QSysInfo::prettyProductName()));
|
|
printf("QSysInfo::machineHostName() = %s\n", qPrintable(QSysInfo::machineHostName()));
|
|
printf("QSysInfo::machineUniqueId() = %s\n", QSysInfo::machineUniqueId().constData());
|
|
printf("QSysInfo::bootUniqueId() = %s\n", qPrintable(QSysInfo::bootUniqueId()));
|
|
|
|
const auto osv = QOperatingSystemVersion::current();
|
|
printf("QOperatingSystemVersion::current() = %s %d.%d.%d\n",
|
|
qPrintable(osv.name()),
|
|
osv.majorVersion(),
|
|
osv.minorVersion(),
|
|
osv.microVersion());
|
|
|
|
return 0;
|
|
}
|