Merge pull request #3677 from c1728p9/armcc_linker_flags

ARM - pass linker flags along to the linker
pull/3602/merge
Sam Grove 2017-02-02 11:05:59 -06:00 committed by GitHub
commit 65956d108e
1 changed files with 2 additions and 0 deletions

View File

@ -179,6 +179,8 @@ class ARM(mbedToolchain):
else:
args = ["-o", output, "--info=totals", "--map", "--list=%s" % map_file]
args.extend(self.flags['ld'])
if mem_map:
args.extend(["--scatter", mem_map])