nealef commented on PR #2026: URL: https://github.com/apache/nuttx-apps/pull/2026#issuecomment-2146019058
It's not the entry point that's causing the grief as the `*.ld` script files all specify an entry point of `__start` so it seems related to the binary being examined by the `nm` command. Is there anyway to get hold those artifacts? This seems to feature in the issue: https://github.com/apache/nuttx/issues/12356#issuecomment-2138234172. I don't understand enough about the differences between various xtensa boards to determine whether it is significant that for esp32 and esp32s2 the user_space ld file has definitions for `_start`: ``` boards/xtensa/esp32/common/scripts/esp32_rom.ld:PROVIDE ( _start = 0x40000704 ); boards/xtensa/esp32s2/common/scripts/esp32s2_rom.ld:PROVIDE ( _start = 0x4000726c ); ``` The s3 version of this file looks radically different. -- 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]
