aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2019-10-13 22:02:55 +0300
committerDenis Shienkov <denis.shienkov@gmail.com>2019-10-14 09:22:52 +0000
commit66acd20eb4ce50755d5dc1ad05f09de1dbfbd88c (patch)
treec2e7aa033c2a62d537499bb815ac3fa96f66455d
parent6835c7701766fbd747b68d5a598867359d9b9115 (diff)
baremetal: Enable errors printing for KEIL A51 assembler
An errors printing for A51 assembler are disabled by default: http://www.keil.com/support/man/docs/a51/a51_errorprint.htm so, we need to enable it explicitly. Change-Id: I22cb268aa7c884daf58b86424ddfbce81dbbe97b Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
-rw-r--r--share/qbs/modules/cpp/keil.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/share/qbs/modules/cpp/keil.js b/share/qbs/modules/cpp/keil.js
index 4bf6e4b79..f68905324 100644
--- a/share/qbs/modules/cpp/keil.js
+++ b/share/qbs/modules/cpp/keil.js
@@ -565,6 +565,9 @@ function assemblerFlags(project, product, input, output, explicitlyDependsOn) {
// Debug information flags.
if (input.cpp.debugInformation)
args.push("DEBUG");
+
+ // Enable errors printing.
+ args.push("EP");
} else if (architecture === "arm") {
// Input.
args.push(input.filePath);