aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2020-08-05 23:37:10 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2020-08-06 11:26:45 +0000
commit2ebe1e5bf9c8cc2f4b97a1cf8a1edc97257de15f (patch)
tree286c582c21a96a2cd7c03474e0f5dec0acf3490b
parent25671a60915dd8ed5f1b2e57df478803c0c0be9e (diff)
baremetal: Fix compiler listing generation for KEIL C166
... because the KEIL C166 compiler completely supports this feature. Change-Id: I86c2a6fdf485fd7c01544d44a4b2fc8b5401a7ad Reviewed-by: Ivan Komissarov <ABBAPOH@gmail.com>
-rw-r--r--share/qbs/modules/cpp/keil.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/share/qbs/modules/cpp/keil.js b/share/qbs/modules/cpp/keil.js
index 4cb2946a6..6bb14124e 100644
--- a/share/qbs/modules/cpp/keil.js
+++ b/share/qbs/modules/cpp/keil.js
@@ -643,7 +643,8 @@ function compilerOutputArtifacts(input, useListing) {
artifacts.push({
fileTags: ["lst"],
filePath: Utilities.getHash(input.baseDir) + "/"
- + (isMcsArchitecture(input.cpp.architecture)
+ + ((isMcsArchitecture(input.cpp.architecture)
+ || isC166Architecture(input.cpp.architecture))
? input.fileName : input.baseName)
+ ".lst"
});