linker: fix for symbol overwrite in hsw linker

It will fix symbol overwriting, _system_heap_start was already used in system_heap section

Signed-off-by: Adrian Bonislawski <adrian.bonislawski@linux.intel.com>
This commit is contained in:
Adrian Bonislawski 2019-06-03 14:17:27 +02:00 committed by Janusz Jankowski
parent 735d9e9fb8
commit 106ea58d7d
1 changed files with 2 additions and 2 deletions

View File

@ -514,9 +514,9 @@ SECTIONS
.buffer_heap (NOLOAD) : ALIGN(8)
{
. = ALIGN (32);
_system_heap_start = ABSOLUTE(.);
_buffer_heap_start = ABSOLUTE(.);
. = . + HEAP_BUFFER_SIZE;
_system_heap_end = ABSOLUTE(.);
_buffer_heap_end = ABSOLUTE(.);
} >buffer_heap :buffer_heap_phdr
.sof_stack (NOLOAD) : ALIGN(8)