Skip to content

Commit 86b441c

Browse files
theotherjimmyadbridge
authored andcommitted
Display full paths in armlink output
1 parent 2dbe035 commit 86b441c

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
@@ -74,7 +74,7 @@ def __init__(self, target, notify=None, macros=None,
7474
self.cc = [main_cc] + self.flags['common'] + self.flags['c']
7575
self.cppc = [main_cc] + self.flags['common'] + self.flags['c'] + self.flags['cxx']
7676

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

7979
self.ar = join(ARM_BIN, "armar")
8080
self.elf2bin = join(ARM_BIN, "fromelf")

0 commit comments

Comments
 (0)