From 656ff27b8e8bc4d932a1d06ed2e830ff3864fa73 Mon Sep 17 00:00:00 2001 From: Ville Juven Date: Fri, 22 Mar 2024 11:59:10 +0200 Subject: [PATCH] arch/arm64: Add the head obj to libarch.a as well On other platforms libarch.a contains the head object. Some projects depend on this fact so let's provide the head object in the archive here as well. --- arch/arm64/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm64/src/Makefile b/arch/arm64/src/Makefile index fc1b4c9ffa053..efc08d9a76bd1 100644 --- a/arch/arm64/src/Makefile +++ b/arch/arm64/src/Makefile @@ -54,7 +54,7 @@ CSRCS = $(CHIP_CSRCS) $(CMN_CSRCS) COBJS = $(CSRCS:.c=$(OBJEXT)) SRCS = $(ASRCS) $(CSRCS) -OBJS = $(AOBJS) $(COBJS) +OBJS = $(AOBJS) $(COBJS) $(HEAD_OBJ) # User-mode objects