Skip to content

Commit 1dd0bce

Browse files
authored
Merge pull request #15355 from imi415/imxrt_ldscript_syntax
Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
2 parents a852898 + 91ce405 commit 1dd0bce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1050/device/TOOLCHAIN_GCC_ARM/MIMXRT1052xxxxx.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SECTIONS
7878
. = ALIGN(8);
7979
} > m_flash_config
8080

81-
ivt_begin= ORIGIN(m_flash_config) + LENGTH(m_flash_config);
81+
ivt_begin = ORIGIN(m_flash_config) + LENGTH(m_flash_config);
8282

8383
.ivt : AT(ivt_begin)
8484
{

targets/TARGET_NXP/TARGET_MCUXpresso_MCUS/TARGET_MIMXRT1170/device/TOOLCHAIN_GCC_ARM/MIMXRT1170xxxxx.ld

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ SECTIONS
7878
. = ALIGN(8);
7979
} > m_flash_config
8080

81-
ivt_begin= ORIGIN(m_flash_config) + LENGTH(m_flash_config);
81+
ivt_begin = ORIGIN(m_flash_config) + LENGTH(m_flash_config);
8282

8383
.ivt : AT(ivt_begin)
8484
{

0 commit comments

Comments
 (0)