-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathKconfig
More file actions
65 lines (51 loc) · 1.23 KB
/
Kconfig
File metadata and controls
65 lines (51 loc) · 1.23 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
mainmenu "C/CPP CMake project framework Kconfig configuration"
menu "Toolchain configuration"
menu "Toolchain info"
config CPU_ARCH
string "cpu arch"
default "x86_64"
endmenu
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
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
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