mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #8017 from TTornblom/master
IAR: Fix for #7662, only massage the error decode URL for the IAR .xclpull/8160/head
commit
3da606e586
|
@ -72,7 +72,7 @@
|
|||
},
|
||||
"error-decode-http-url-str": {
|
||||
"help": "HTTP URL string for ARM Mbed-OS Error Decode microsite",
|
||||
"value": "\"\\nFor more info, visit: https:/\\/armmbed.github.io/mbedos-error/?error=0x%08X\""
|
||||
"value": "\"\\nFor more info, visit: https://armmbed.github.io/mbedos-error/?error=0x%08X\""
|
||||
}
|
||||
},
|
||||
"target_overrides": {
|
||||
|
|
|
@ -167,7 +167,7 @@ class IAR(mbedToolchain):
|
|||
opts = ['-D%s' % d for d in defines]
|
||||
if for_asm:
|
||||
config_macros = self.config.get_config_data_macros()
|
||||
macros_cmd = ['"-D%s"' % d.replace('"', '') for d in config_macros]
|
||||
macros_cmd = ['"-D%s"' % d.replace('"', '').replace('//','/\/') for d in config_macros]
|
||||
if self.RESPONSE_FILES:
|
||||
via_file = self.make_option_file(
|
||||
macros_cmd, "asm_macros_{}.xcl")
|
||||
|
|
Loading…
Reference in New Issue