Skip to content

Commit

Permalink
Merge pull request #15355 from imi415/imxrt_ldscript_syntax
Browse files Browse the repository at this point in the history
Targets: NXP: IMXRT: Fixed GCC_ARM lds syntax.
  • Loading branch information
0xc0170 authored Jan 17, 2023
2 parents a852898 + 91ce405 commit 1dd0bce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ SECTIONS
. = ALIGN(8);
} > m_flash_config

ivt_begin= ORIGIN(m_flash_config) + LENGTH(m_flash_config);
ivt_begin = ORIGIN(m_flash_config) + LENGTH(m_flash_config);

.ivt : AT(ivt_begin)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ SECTIONS
. = ALIGN(8);
} > m_flash_config

ivt_begin= ORIGIN(m_flash_config) + LENGTH(m_flash_config);
ivt_begin = ORIGIN(m_flash_config) + LENGTH(m_flash_config);

.ivt : AT(ivt_begin)
{
Expand Down

0 comments on commit 1dd0bce

Please sign in to comment.