Skip to content

Commit f3885fd

Browse files
authored
Update gcc.py
1 parent 71466f8 commit f3885fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ def link(self, output, objects, libraries, lib_dirs, mem_map):
247247
if mem_map:
248248
preproc_output = join(dirname(output), ".link_script.ld")
249249
cmd = (
250-
self.preproc + [mem_map] + self.ld[1:] + ["-o", preproc_output]
250+
self.preproc + [mem_map] + self.ld[1:] + ["-o", preproc_output] +
251251
self.get_compile_options(self.get_symbols(), [])
252252
)
253253
self.notify.cc_verbose("Preproc: %s" % ' '.join(cmd))

0 commit comments

Comments
 (0)