This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new aa3320fab import/Make.defs: use _start entry name
aa3320fab is described below

commit aa3320fab4aca6b60749ae37bdd5d21b92433d7d
Author: Yanfeng Liu <[email protected]>
AuthorDate: Mon Dec 8 19:41:44 2025 +0800

    import/Make.defs: use _start entry name
    
    This reverts `_start` entry name to fix issue#17443 together with
    nuttx side pull#17450.
    
    Signed-off-by: Yanfeng Liu <[email protected]>
---
 import/Make.defs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/import/Make.defs b/import/Make.defs
index 8943963ed..2b8236d25 100644
--- a/import/Make.defs
+++ b/import/Make.defs
@@ -97,7 +97,7 @@ endif
 ifeq ($(CONFIG_BINFMT_ELF_RELOCATABLE),y)
   LDELFFLAGS += -r
 endif
-LDELFFLAGS += -e __start -Bstatic
+LDELFFLAGS += -e _start -Bstatic
 
 # Remove other ld scripts, just use import ld scripts
 #

Reply via email to