acassis commented on PR #2026:
URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2148523630
@tiagojbalmeida @almir-okato I discovered that providing the _start symbol
at ROM ldscript fixes the issue. Please note that definition exists for ESP32
and ESP32S2, but is missing for ESP32S3.
I used the same definition from ESP32S2 (probably needs to be a different
location)
```
$ git diff
diff --git a/boards/xtensa/esp32s3/common/scripts/esp32s3_rom.ld
b/boards/xtensa/esp32s3/common/scripts/esp32s3_rom.ld
index 263b9c8874..9317a862e0 100644
--- a/boards/xtensa/esp32s3/common/scripts/esp32s3_rom.ld
+++ b/boards/xtensa/esp32s3/common/scripts/esp32s3_rom.ld
@@ -53,6 +53,7 @@ ets_printf = 0x400005d0;
ets_install_putc1 = 0x400005dc;
ets_install_uart_printf = 0x400005e8;
ets_install_putc2 = 0x400005f4;
+PROVIDE ( _start = 0x4000726c );
PROVIDE( ets_delay_us = 0x40000600 );
ets_get_stack_info = 0x4000060c;
ets_install_lock = 0x40000618;
```
--
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]