Display full paths in armlink output

pull/5178/head
Jimmy Brisson 2017-09-18 16:40:52 -05:00 committed by adbridge
parent 2dbe035d0b
commit 86b441c5a4
4 changed files with 4 additions and 4 deletions

View File

@ -34,7 +34,7 @@
"asm": [],
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
"ld": []
"ld": ["--show_full_path"]
},
"uARM": {
"common": ["-c", "--gnu", "-Otime", "--split_sections",

View File

@ -31,7 +31,7 @@
"asm": [],
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
"ld": []
"ld": ["--show_full_path"]
},
"uARM": {
"common": ["-c", "--gnu", "-Otime", "--split_sections",

View File

@ -31,7 +31,7 @@
"asm": [],
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
"ld": []
"ld": ["--show_full_path"]
},
"uARM": {
"common": ["-c", "--gnu", "-Ospace", "--split_sections",

View File

@ -74,7 +74,7 @@ class ARM(mbedToolchain):
self.cc = [main_cc] + self.flags['common'] + self.flags['c']
self.cppc = [main_cc] + self.flags['common'] + self.flags['c'] + self.flags['cxx']
self.ld = [join(ARM_BIN, "armlink")]
self.ld = [join(ARM_BIN, "armlink")] + self.flags['ld']
self.ar = join(ARM_BIN, "armar")
self.elf2bin = join(ARM_BIN, "fromelf")