mirror of https://github.com/ARMmbed/mbed-os.git
Display full paths in armlink output
parent
6d135c26b3
commit
8c54c4efa8
|
|
@ -34,7 +34,7 @@
|
||||||
"asm": [],
|
"asm": [],
|
||||||
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
||||||
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
||||||
"ld": []
|
"ld": ["--show_full_path"]
|
||||||
},
|
},
|
||||||
"uARM": {
|
"uARM": {
|
||||||
"common": ["-c", "--gnu", "-Otime", "--split_sections",
|
"common": ["-c", "--gnu", "-Otime", "--split_sections",
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"asm": [],
|
"asm": [],
|
||||||
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
||||||
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
||||||
"ld": []
|
"ld": ["--show_full_path"]
|
||||||
},
|
},
|
||||||
"uARM": {
|
"uARM": {
|
||||||
"common": ["-c", "--gnu", "-Otime", "--split_sections",
|
"common": ["-c", "--gnu", "-Otime", "--split_sections",
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@
|
||||||
"asm": [],
|
"asm": [],
|
||||||
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
|
||||||
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
|
||||||
"ld": []
|
"ld": ["--show_full_path"]
|
||||||
},
|
},
|
||||||
"uARM": {
|
"uARM": {
|
||||||
"common": ["-c", "--gnu", "-Ospace", "--split_sections",
|
"common": ["-c", "--gnu", "-Ospace", "--split_sections",
|
||||||
|
|
|
||||||
|
|
@ -71,7 +71,7 @@ class ARM(mbedToolchain):
|
||||||
self.cc = [main_cc] + self.flags['common'] + self.flags['c']
|
self.cc = [main_cc] + self.flags['common'] + self.flags['c']
|
||||||
self.cppc = [main_cc] + self.flags['common'] + self.flags['c'] + self.flags['cxx']
|
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.ar = join(ARM_BIN, "armar")
|
||||||
self.elf2bin = join(ARM_BIN, "fromelf")
|
self.elf2bin = join(ARM_BIN, "fromelf")
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue