Skip to content

Commit 1ef769d

Browse files
lyakhlgirdwood
authored andcommitted
zephyr: apl: further reduce heap size
Recent changes increased the size of various sections, breaking linkage again. We need to make the linker calculate the heap size automatically but until that is ready, reduce the heap size further to fix the current breakage. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 955c7c9 commit 1ef769d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

zephyr/wrapper.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ __section(".heap_mem") static uint8_t __aligned(64) heapmem[HEAPMEM_SIZE];
7676
#if (CONFIG_HP_MEMORY_BANKS < 16)
7777
/* e.g. APL */
7878
#if defined __XCC__
79-
#define HEAPMEM_SIZE 0x28000
79+
#define HEAPMEM_SIZE 0x20000
8080
#else
8181
#define HEAPMEM_SIZE 0x30000
8282
#endif

0 commit comments

Comments
 (0)