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/incubator-nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 0bafb014a1 arch/arm/compiler: correct global symbol name 0bafb014a1 is described below commit 0bafb014a10c88746db26be7364b95212f140bb2 Author: chao an <anc...@xiaomi.com> AuthorDate: Sat Sep 17 19:21:48 2022 +0800 arch/arm/compiler: correct global symbol name Fix Compile error from Armclang compiler(AC6): Error: L6218E: Undefined symbol arm_vectoraddrexcption (referred from arm_vectoraddrexcptn.o). Signed-off-by: chao an <anc...@xiaomi.com> --- arch/arm/src/arm/arm_vectoraddrexcptn.S | 4 ++-- arch/arm/src/armv7-a/arm_vectoraddrexcptn.S | 4 ++-- arch/arm/src/armv7-r/arm_vectoraddrexcptn.S | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/arch/arm/src/arm/arm_vectoraddrexcptn.S b/arch/arm/src/arm/arm_vectoraddrexcptn.S index 95500f3861..e0be37d2b6 100644 --- a/arch/arm/src/arm/arm_vectoraddrexcptn.S +++ b/arch/arm/src/arm/arm_vectoraddrexcptn.S @@ -35,7 +35,7 @@ * Public Symbols ****************************************************************************/ - .globl arm_vectoraddrexcption + .globl arm_vectoraddrexcptn /**************************************************************************** * Assembly Macros @@ -54,7 +54,7 @@ .text /**************************************************************************** - * Name: arm_vectoraddrexcption + * Name: arm_vectoraddrexcptn * * Description: * Shouldn't happen. This exception handler is in a separate file from diff --git a/arch/arm/src/armv7-a/arm_vectoraddrexcptn.S b/arch/arm/src/armv7-a/arm_vectoraddrexcptn.S index 4580d01ede..6a2cf85110 100644 --- a/arch/arm/src/armv7-a/arm_vectoraddrexcptn.S +++ b/arch/arm/src/armv7-a/arm_vectoraddrexcptn.S @@ -35,7 +35,7 @@ * Public Symbols ****************************************************************************/ - .globl arm_vectoraddrexcption + .globl arm_vectoraddrexcptn /**************************************************************************** * Assembly Macros @@ -54,7 +54,7 @@ .text /**************************************************************************** - * Name: arm_vectoraddrexcption + * Name: arm_vectoraddrexcptn * * Description: * Shouldn't happen. This exception handler is in a separate file from diff --git a/arch/arm/src/armv7-r/arm_vectoraddrexcptn.S b/arch/arm/src/armv7-r/arm_vectoraddrexcptn.S index 92b74ea42a..02354752ee 100644 --- a/arch/arm/src/armv7-r/arm_vectoraddrexcptn.S +++ b/arch/arm/src/armv7-r/arm_vectoraddrexcptn.S @@ -35,7 +35,7 @@ * Public Symbols ****************************************************************************/ - .globl arm_vectoraddrexcption + .globl arm_vectoraddrexcptn /**************************************************************************** * Assembly Macros @@ -54,7 +54,7 @@ .text /**************************************************************************** - * Name: arm_vectoraddrexcption + * Name: arm_vectoraddrexcptn * * Description: * Shouldn't happen. This exception handler is in a separate file from