almir-okato commented on PR #2026: URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2140104253
> @almir-okato instead reverting the PR we could fix xtensa: > > The arch/xtensa/src/esp32s3/esp32s3_start.c needs an entry point __start that calls __esp32s3_start it also has code such as: > > ``` > /**************************************************************************** > * Private Function Prototypes > ****************************************************************************/ > > #ifdef CONFIG_ESP32S3_APP_FORMAT_MCUBOOT > noreturn_function void __start(void); > #endif > > /**************************************************************************** > * Private Data > ****************************************************************************/ > > #ifdef CONFIG_ESP32S3_APP_FORMAT_MCUBOOT > HDR_ATTR static void (*_entry_point)(void) = __start; > #endif > ``` @acassis the entry point `__start` already exists on `esp32s3_start.c`, the build complains about a symbol `_start` (only one '_'). However, this is not the only issue, the ESP32-S2 test execution on our internal CI also fails. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
