mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
835d38db58
commit
7f0e7ce722
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue