Skip to content

Commit bb17d6a

Browse files
committed
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.
1 parent 10d2b58 commit bb17d6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/iar.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def get_dep_option(self, object):
104104

105105
def cc_extra(self, object):
106106
base, _ = splitext(object)
107-
return ["-l", base + '.s']
107+
return ["-l", base + '.s.txt']
108108

109109
def get_compile_options(self, defines, includes):
110110
return ['-D%s' % d for d in defines] + ['-f', self.get_inc_file(includes)]

0 commit comments

Comments
 (0)