This is an automated email from the ASF dual-hosted git repository.
pkarashchenko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push:
new 4c3232a229 libc/machine: Fix ARMV[7|8]M_STRING_FUNCTION typo error in
Kconfig
4c3232a229 is described below
commit 4c3232a2292731b90f67694735f16093991c7dc0
Author: Xiang Xiao <[email protected]>
AuthorDate: Tue Aug 29 23:57:20 2023 +0800
libc/machine: Fix ARMV[7|8]M_STRING_FUNCTION typo error in Kconfig
Signed-off-by: Xiang Xiao <[email protected]>
---
libs/libc/machine/arm/armv7-m/Kconfig | 1 +
libs/libc/machine/arm/armv8-m/Kconfig | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/libs/libc/machine/arm/armv7-m/Kconfig
b/libs/libc/machine/arm/armv7-m/Kconfig
index b837c6b523..c269240f4b 100644
--- a/libs/libc/machine/arm/armv7-m/Kconfig
+++ b/libs/libc/machine/arm/armv7-m/Kconfig
@@ -14,6 +14,7 @@ config ARMV7M_STRING_FUNCTION
select ARMV7M_MEMSET
select ARMV7M_MEMMOVE
select ARMV7M_STRCMP
+ select ARMV7M_STRCPY
select ARMV7M_STRLEN
config ARMV7M_MEMCHR
diff --git a/libs/libc/machine/arm/armv8-m/Kconfig
b/libs/libc/machine/arm/armv8-m/Kconfig
index 2d27574986..afe45c4af7 100644
--- a/libs/libc/machine/arm/armv8-m/Kconfig
+++ b/libs/libc/machine/arm/armv8-m/Kconfig
@@ -12,7 +12,7 @@ config ARMV8M_STRING_FUNCTION
select ARMV8M_MEMCHR
select ARMV8M_MEMCPY
select ARMV8M_MEMSET
- select ARMV8M_STRCMP
+ select ARMV8M_MEMMOVE
select ARMV8M_STRCMP
select ARMV8M_STRLEN