nuttx-apps/system/gcov/Kconfig
yinshengkai 2b11886c9a system: adjust gcov configuration name
Signed-off-by: yinshengkai <yinshengkai@xiaomi.com>
2024-10-25 16:13:30 +02:00

30 lines
605 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config SYSTEM_GCOV
tristate "gcov tool"
depends on SCHED_GCOV
---help---
Enable support for the 'gcov' command.
if SYSTEM_GCOV
config SYSTEM_GCOV_PROGNAME
string "gcov program name"
default "gcov"
---help---
This is the name of the program that will be used when the NSH ELF
program is installed.
config SYSTEM_GCOV_PRIORITY
int "gcov task priority"
default 100
config SYSTEM_GCOV_STACKSIZE
int "gcov stack size"
default DEFAULT_TASK_STACKSIZE
endif