From bb17d6ada9b4e582df574d04c87e6d73945dd5d7 Mon Sep 17 00:00:00 2001 From: Russ Butler Date: Thu, 26 May 2016 17:37:43 -0500 Subject: [PATCH] Rename disassembly file to fix testing with IAR Disassembly files can unintentionally get picked up by the test build system. This patch changes the file extension on those files from ".s" to ".s.txt" so they are ignored. --- tools/toolchains/iar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolchains/iar.py b/tools/toolchains/iar.py index bef166cbde..9e233fc400 100644 --- a/tools/toolchains/iar.py +++ b/tools/toolchains/iar.py @@ -104,7 +104,7 @@ class IAR(mbedToolchain): def cc_extra(self, object): base, _ = splitext(object) - return ["-l", base + '.s'] + return ["-l", base + '.s.txt'] def get_compile_options(self, defines, includes): return ['-D%s' % d for d in defines] + ['-f', self.get_inc_file(includes)]