nuttx-apps/testing/libc/arch_libc/Kconfig
tengshuangshuang 40a890626d testing: specify arch format Kconfig
Specify architecture format in Kconfig to ensure proper configuration
handling for different architectures in testing modules.

Signed-off-by: tengshuangshuang <tengshuangshuang@xiaomi.com>
2026-01-21 14:44:00 -03:00

38 lines
815 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config TESTING_ARCH_LIBC
tristate "arch-specific libc function test"
default n
depends on ARCH_TOOLCHAIN_GNU
---help---
Enable the arch libc test
if TESTING_ARCH_LIBC
config TESTING_ARCH_LIBC_STRCPY
bool "test strcpy"
default y
config TESTING_ARCH_LIBC_PROGNAME
string "Program name"
default "arch_libctest"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config TESTING_ARCH_LIBC_PRIORITY
int "arch libc test priority"
default 100
config TESTING_ARCH_LIBC_STACKSIZE
int "arch libc test stack size"
default DEFAULT_TASK_STACKSIZE
config TESTING_ARCH_LIBC_VERBOSE
bool "Verbose output"
default n
endif