From e16c3ca25b532eab520c3b37fc6736a5532fd1a8 Mon Sep 17 00:00:00 2001 From: Masayuki Ishikawa Date: Wed, 4 Mar 2020 17:37:17 +0900 Subject: [PATCH] arch: esp32: Fix compile error with xtensa-esp32-elf-gcc 8.2.0 --- arch/xtensa/src/esp32/esp32_cpuidlestack.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/arch/xtensa/src/esp32/esp32_cpuidlestack.c b/arch/xtensa/src/esp32/esp32_cpuidlestack.c index 40b763a4c7..6385524c25 100644 --- a/arch/xtensa/src/esp32/esp32_cpuidlestack.c +++ b/arch/xtensa/src/esp32/esp32_cpuidlestack.c @@ -43,8 +43,7 @@ /* Address of the CPU0 IDLE thread */ uint32_t g_cpu1_idlestack[CPU1_IDLETHREAD_STACKWORDS] - __attribute__((aligned(16) section(".noinit"))); - + __attribute__((aligned(16), section(".noinit"))); /**************************************************************************** * Public Functions