From 66acd20eb4ce50755d5dc1ad05f09de1dbfbd88c Mon Sep 17 00:00:00 2001 From: Denis Shienkov Date: Sun, 13 Oct 2019 22:02:55 +0300 Subject: 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 --- share/qbs/modules/cpp/keil.js | 3 +++ 1 file changed, 3 insertions(+) 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); -- cgit v1.2.3