Add show full path option to armc6 linker

### Description
Full paths in the map file are required to have correct memap parsing.
This PR adds the option `--show_full_path` to ARMC6 in every profile.
This option only affects the map file output, so it's safe to add.
pull/7167/head
Jimmy Brisson 2018-06-07 11:44:03 -05:00
parent 835d38db58
commit 7f0e7ce722
3 changed files with 4 additions and 3 deletions

View File

@ -24,7 +24,7 @@
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
"cxx": ["-fno-rtti", "-std=gnu++98"],
"ld": ["--verbose", "--remove", "--legacyalign", "--no_strict_wchar_size",
"--no_strict_enum_size"]
"--no_strict_enum_size", "--show_full_path"]
},
"ARM": {
"common": ["-c", "--gnu", "-Otime", "--split_sections",

View File

@ -22,7 +22,7 @@
"asm": [],
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
"cxx": ["-fno-rtti", "-std=gnu++98"],
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size"]
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size", "--show_full_path"]
},
"ARM": {
"common": ["-c", "--gnu", "-Otime", "--split_sections",

View File

@ -22,7 +22,8 @@
"asm": [],
"c": ["-D__ASSERT_MSG", "-std=gnu99"],
"cxx": ["-fno-rtti", "-std=gnu++98"],
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size"]
"ld": ["--legacyalign", "--no_strict_wchar_size", "--no_strict_enum_size",
"--show_full_path"]
},
"ARM": {
"common": ["-c", "--gnu", "-Ospace", "--split_sections",