Skip to content

Commit 9ca3252

Browse files
author
Cruz Monrreal
authored
Merge pull request #7167 from theotherjimmy/fix-memap-armc6
Add show full path option to armc6 linker
2 parents 084e747 + 7f0e7ce commit 9ca3252

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

tools/profiles/debug.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2525
"cxx": ["-fno-rtti", "-std=gnu++98"],
2626
"ld": ["--verbose", "--remove", "--legacyalign", "--no_strict_wchar_size",
27-
"--no_strict_enum_size"]
27+
"--no_strict_enum_size", "--show_full_path"]
2828
},
2929
"ARM": {
3030
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/develop.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"asm": [],
2323
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2424
"cxx": ["-fno-rtti", "-std=gnu++98"],
25-
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size"]
25+
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size", "--show_full_path"]
2626
},
2727
"ARM": {
2828
"common": ["-c", "--gnu", "-Otime", "--split_sections",

tools/profiles/release.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
"asm": [],
2323
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
2424
"cxx": ["-fno-rtti", "-std=gnu++98"],
25-
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size"]
25+
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size",
26+
"--show_full_path"]
2627
},
2728
"ARM": {
2829
"common": ["-c", "--gnu", "-Ospace", "--split_sections",

0 commit comments

Comments
 (0)