Skip to content

Commit 8c54c4e

Browse files
committed
Display full paths in armlink output
1 parent 6d135c2 commit 8c54c4e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

tools/profiles/debug.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"asm": [],
3535
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
3636
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
37-
"ld": []
37+
"ld": ["--show_full_path"]
3838
},
3939
"uARM": {
4040
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/develop.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"asm": [],
3232
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
3333
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
34-
"ld": []
34+
"ld": ["--show_full_path"]
3535
},
3636
"uARM": {
3737
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/release.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"asm": [],
3232
"c": ["--md", "--no_depend_system_headers", "--c99", "-D__ASSERT_MSG"],
3333
"cxx": ["--cpp", "--no_rtti", "--no_vla"],
34-
"ld": []
34+
"ld": ["--show_full_path"]
3535
},
3636
"uARM": {
3737
"common": ["-c", "--gnu", "-Ospace", "--split_sections",

tools/toolchains/arm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def __init__(self, target, notify=None, macros=None,
7171
self.cc = [main_cc] + self.flags['common'] + self.flags['c']
7272
self.cppc = [main_cc] + self.flags['common'] + self.flags['c'] + self.flags['cxx']
7373

74-
self.ld = [join(ARM_BIN, "armlink")]
74+
self.ld = [join(ARM_BIN, "armlink")] + self.flags['ld']
7575

7676
self.ar = join(ARM_BIN, "armar")
7777
self.elf2bin = join(ARM_BIN, "fromelf")

0 commit comments

Comments
 (0)