Fix: armasm debug information missing for debug builds
The build system failed to properly specify compilation switches for
armasm when executing debug builds (-DCMAKE_BUILD_TYPE=Debug).
As a resolution the "embedded_project_fixup()" processing was changed
to define proper compilation switches.
Change-Id: I412be8dc3037df860f064e32c4cad2c48c70a30e
Signed-off-by: Gyorgy Szing <Gyorgy.Szing@arm.com>
diff --git a/cmake/Compiler/GNUARM-ASM.cmake b/cmake/Compiler/GNUARM-ASM.cmake
index b0261d9..bd28beb 100644
--- a/cmake/Compiler/GNUARM-ASM.cmake
+++ b/cmake/Compiler/GNUARM-ASM.cmake
@@ -1,10 +1,9 @@
#-------------------------------------------------------------------------------
-# Copyright (c) 2017-2018, Arm Limited. All rights reserved.
+# Copyright (c) 2017-2019, Arm Limited. All rights reserved.
#
# SPDX-License-Identifier: BSD-3-Clause
#
#-------------------------------------------------------------------------------
-include(Compiler/GNUARM)
set(CMAKE_ASM_SOURCE_FILE_EXTENSIONS s;S;asm)
-__compiler_gnuarm(ASM)
+#No furhter configuration is needed to extend cmake's buit-in GCC support.