Re: [PR] modlib/gnu-elf.ld.in: fix armv7a ET_EXEC apps linking [nuttx]

2025-01-17 Thread via GitHub
yf13 commented on code in PR #15588: URL: https://github.com/apache/nuttx/pull/15588#discussion_r1920106080 ## libs/libc/modlib/gnu-elf.ld.in: ## @@ -26,7 +26,11 @@ # include # define TEXT CONFIG_ARCH_TEXT_VBASE -# define DATA CONFIG_ARCH_DATA_VBASE + CONFIG_MM_PGSIZE +#

Re: [PR] modlib/gnu-elf.ld.in: fix armv7a ET_EXEC apps linking [nuttx]

2025-01-17 Thread via GitHub
xiaoxiang781216 commented on code in PR #15588: URL: https://github.com/apache/nuttx/pull/15588#discussion_r1919966163 ## libs/libc/modlib/gnu-elf.ld.in: ## @@ -26,7 +26,11 @@ # include # define TEXT CONFIG_ARCH_TEXT_VBASE -# define DATA CONFIG_ARCH_DATA_VBASE + CONFIG_M

[PR] modlib/gnu-elf.ld.in: fix armv7a ET_EXEC apps linking [nuttx]

2025-01-17 Thread via GitHub
yf13 opened a new pull request, #15588: URL: https://github.com/apache/nuttx/pull/15588 ## Summary This fixes booting issue of qemu-armv7a:knsh + ELF_EXECUTABLE by aligning formula of armv7-a with its current addrenv layout. This is a follow up of pull/15527. ## Impacts