aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2019-10-20 20:15:08 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2019-10-30 14:45:02 +0000
commit93911704fb424fb6afff2085eb57476163859f15 (patch)
tree08e482d2497081b4420a0f23c912d82494e996a0
parent3b3f5e1168415fedb7b6ed6f909d952754bc0d85 (diff)
baremetal: Auto-detect the Renesas RL78 GCC toolchain on Windows
This patch impplements an auto-detection of installed GCC toolchain for RL78 architecture from the Renesas: * https://gcc-renesas.com/rl78/rl78-download-toolchains/ I had surprised that Renesas RL78 toolchain has a "non-standard" name, like: * rl78-elf-gcc-4.9.2.201902-GNURL78.exe As you can see, this name ends with "GNURL78" text, which causes a wrong prefix and suffix detection. So, now we use a scary regular expression to right compiler name parsing. Change-Id: Ibf820f8fb44419be4cf02894b1ab9dad9e18d77e Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--src/app/qbs-setup-toolchains/gccprobe.cpp61
1 files changed, 54 insertions, 7 deletions
diff --git a/src/app/qbs-setup-toolchains/gccprobe.cpp b/src/app/qbs-setup-toolchains/gccprobe.cpp
index a8482f8d0..2be65ca79 100644
--- a/src/app/qbs-setup-toolchains/gccprobe.cpp
+++ b/src/app/qbs-setup-toolchains/gccprobe.cpp
@@ -51,6 +51,7 @@
#include <QtCore/qdir.h>
#include <QtCore/qprocess.h>
+#include <QtCore/qregularexpression.h>
#include <algorithm>
@@ -108,12 +109,21 @@ public:
explicit ToolchainDetails(const QFileInfo &compiler)
{
auto baseName = compiler.completeBaseName();
- if (baseName.contains(QRegExp(QLatin1String("\\d$")))) {
- const auto dashIndex = baseName.lastIndexOf(QLatin1Char('-'));
- version = baseName.mid(dashIndex + 1);
- baseName = baseName.left(dashIndex);
+ // Extract the version sub-string if it exists. We assume that a version
+ // sub-string located after the compiler prefix && suffix. E.g. this code
+ // parses a version from the compiler names, like this:
+ // - avr-gcc-4.9.2.exe
+ // - arm-none-eabi-gcc-8.2.1
+ // - rl78-elf-gcc-4.9.2.201902-GNURL78
+ const QRegularExpression re(QLatin1String("-(\\d+|\\d+\\.\\d+|" \
+ "\\d+\\.\\d+\\.\\d+|" \
+ "\\d+\\.\\d+\\.\\d+\\.\\d+)" \
+ "[-[0-9a-zA-Z]*]?$"));
+ const QRegularExpressionMatch match = re.match(baseName);
+ if (match.hasMatch()) {
+ version = match.captured(1);
+ baseName = baseName.left(match.capturedStart());
}
-
const auto dashIndex = baseName.lastIndexOf(QLatin1Char('-'));
suffix = baseName.mid(dashIndex + 1);
prefix = baseName.left(dashIndex + 1);
@@ -378,6 +388,41 @@ static QStringList atmelRegistrySearchPaths()
return searchPaths;
}
+static QStringList renesasRl78RegistrySearchPaths()
+{
+ if (!HostOsInfo::isWindowsHost())
+ return {};
+
+ // Registry token for the "Renesas RL78" toolchain.
+ static const char kRegistryToken[] = "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\" \
+ "Windows\\CurrentVersion\\Uninstall";
+
+ QStringList searchPaths;
+
+ QSettings registry(QLatin1String(kRegistryToken), QSettings::NativeFormat);
+ const auto productGroups = registry.childGroups();
+ for (const QString &productKey : productGroups) {
+ if (!productKey.startsWith(
+ QLatin1String("GCC for Renesas RL78"))) {
+ continue;
+ }
+ registry.beginGroup(productKey);
+ const QString installLocation = registry.value(
+ QLatin1String("InstallLocation")).toString();
+ registry.endGroup();
+ if (installLocation.isEmpty())
+ continue;
+
+ const QFileInfo toolchainPath = QDir(installLocation).absolutePath()
+ + QLatin1String("/rl78-elf/rl78-elf/bin");
+ if (!toolchainPath.exists())
+ continue;
+ searchPaths.push_back(toolchainPath.absoluteFilePath());
+ }
+
+ return searchPaths;
+}
+
Profile createGccProfile(const QFileInfo &compiler, Settings *settings,
const QStringList &toolchainTypes,
const QString &profileName)
@@ -451,8 +496,10 @@ void gccProbe(Settings *settings, QList<Profile> &profiles, const QString &compi
qbsInfo() << Tr::tr("Trying to detect %1...").arg(compilerName);
QStringList searchPaths;
- searchPaths << systemSearchPaths() << gnuRegistrySearchPaths()
- << atmelRegistrySearchPaths();
+ searchPaths << systemSearchPaths()
+ << gnuRegistrySearchPaths()
+ << atmelRegistrySearchPaths()
+ << renesasRl78RegistrySearchPaths();
std::vector<QFileInfo> candidates;
const auto filters = buildCompilerNameFilters(compilerName);