forked from sipeed/Maix-Speech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKconfig
52 lines (35 loc) · 718 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
49
mainmenu "Maix-Speech configuration"
menu "Toolchain configuration"
config TOOLCHAIN_PATH
string "toolchain path"
default ""
config TOOLCHAIN_PREFIX
string "toolchain prefix"
default ""
endmenu
choice ARCH
prompt "CPU arch"
default ARCH_X86
help
"Select CPU arch"
config ARCH_X86
bool "x86"
config ARCH_R329
bool "r329"
config ARCH_RISCV64
bool "riscv64"
config ARCH_AARCH64
bool "aarch64"
config ARCH_ARMV7MUSL
bool "armv7musl"
config ARCH_ARMV7MUSL1
bool "armv7musl1"
config ARCH_ARMV7
bool "armv7"
config ARCH_V83X
bool "v83x"
endchoice
menu "Components configuration"
osource "${SDK_PATH}/components/*/Kconfig"
osource "${PROJECT_PATH}/*/Kconfig"
endmenu