aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/sdcc.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/cpp/sdcc.qbs')
-rw-r--r--share/qbs/modules/cpp/sdcc.qbs4
1 files changed, 4 insertions, 0 deletions
diff --git a/share/qbs/modules/cpp/sdcc.qbs b/share/qbs/modules/cpp/sdcc.qbs
index a0d795b40..0be9d22c4 100644
--- a/share/qbs/modules/cpp/sdcc.qbs
+++ b/share/qbs/modules/cpp/sdcc.qbs
@@ -87,6 +87,8 @@ CppModule {
switch (qbs.architecture) {
case "mcs51":
return "sdas8051" + compilerExtension;
+ case "stm8":
+ return "sdasstm8" + compilerExtension;
}
}
assemblerPath: FileInfo.joinPaths(toolchainInstallPath, assemblerName)
@@ -95,6 +97,8 @@ CppModule {
switch (qbs.architecture) {
case "mcs51":
return "sdld" + compilerExtension;
+ case "stm8":
+ return "sdldstm8" + compilerExtension;
}
}
linkerPath: FileInfo.joinPaths(toolchainInstallPath, linkerName)