-
Notifications
You must be signed in to change notification settings - Fork 5
/
Kconfig
48 lines (38 loc) · 977 Bytes
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
mainmenu "C/CPP CMake project framework Kconfig configuration"
menu "Toolchain configuration"
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 ""
choice
prompt "host system type"
default TOOLCHAIN_SYSTEM_UNIX
config TOOLCHAIN_SYSTEM_UNIX
bool "unix"
config TOOLCHAIN_SYSTEM_WIN
bool "win"
endchoice
config REPO_AUTOMATION
bool 'Download automation for the repo.'
default n
config COMMPILE_DEBUG
bool 'commpile debug msg!'
default n
endmenu
menu "Components configuration"
osource "${SDK_PATH}/components*/*/Kconfig"
osource "${EXT_COMPONENTS_PATH}/*/Kconfig"
osource "${PROJECT_PATH}/../components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
endmenu
config USE_STRIP_REDUCE_SIZE_ENABLED
bool "strip reduce size"
default n