nuttx-apps/system/gcov/Kconfig
Xiang Xiao 385603666b system: Add gcov command
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2022-05-04 18:08:07 +03:00

30 lines
608 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 ARCH_COVERAGE
---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