Files

65 lines
1.2 KiB
Plaintext
Raw Permalink Normal View History

2024-04-10 12:21:46 +08:00
mainmenu "C/CPP CMake project framework Kconfig configuration"
menu "Toolchain configuration"
2025-11-14 11:46:56 +08:00
menu "Toolchain info"
config CPU_ARCH
string "cpu arch"
default "x86_64"
endmenu
2024-04-10 12:21:46 +08:00
config TOOLCHAIN_PATH
string "toolchain path"
default ""
config TOOLCHAIN_PREFIX
string "toolchain prefix"
default ""
config TOOLCHAIN_FLAGS
string "toolchain FLAGS"
default ""
config LIB_LINK_SEARCH_PATH
string "lib link search patch"
default ""
2024-04-17 17:51:22 +08:00
choice
prompt "host system type"
default TOOLCHAIN_SYSTEM_UNIX
config TOOLCHAIN_SYSTEM_UNIX
bool "unix"
config TOOLCHAIN_SYSTEM_WIN
bool "win"
endchoice
2024-04-10 12:21:46 +08:00
2025-09-17 10:30:24 +08:00
choice
prompt "empty src file type"
default EMPTY_SRC_FILE_CPP
config EMPTY_SRC_FILE_CPP
bool "empty_src_file.cpp"
config EMPTY_SRC_FILE_C
bool "empty_src_file.c"
endchoice
2024-06-03 15:16:25 +08:00
config REPO_AUTOMATION
bool 'Download automation for the repo.'
default n
2024-04-10 12:21:46 +08:00
config COMMPILE_DEBUG
bool 'commpile debug msg!'
default n
2025-09-17 10:30:24 +08:00
2024-04-10 12:21:46 +08:00
endmenu
menu "Components configuration"
2024-08-02 17:34:35 +08:00
osource "${SDK_PATH}/components*/*/Kconfig"
2024-11-18 11:59:08 +08:00
osource "${EXT_COMPONENTS_PATH}/*/Kconfig"
2024-04-10 12:21:46 +08:00
osource "${PROJECT_PATH}/../components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
endmenu
config USE_STRIP_REDUCE_SIZE_ENABLED
bool "strip reduce size"
default n