1 Star 0 Fork 2

MagiChen/userapps

forked from RT-Thread/userapps 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Kconfig 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
bernard 提交于 2020-10-25 16:39 . import code
choice
prompt "CPU Arch"
default CORTEX_A
config CORTEX_A
bool "ARM Cortex-A"
config CORTEX_M
bool "ARM Cortex-M"
endchoice
config ARCH
string
default "Cortex-A" if CORTEX_A
default "Cortex-M" if CORTEX_M
default "Cortex-A"
choice
prompt "Compiler"
default GNU_GCC
config GNU_GCC
bool "GNU GCC"
config GNU_GCC_MUSL
bool "GNU GCC with musl libc"
config GNU_GCC_NEWLIB
bool "GNU GCC with newlib libc"
endchoice
config Toolchain
string
default "gcc" if GNU_GCC
default "gcc_musl" if GNU_GCC_MUSL
default "gcc_newlib" if GNU_GCC_NEWLIB
default "gcc"
config EXEC_PATH
string "Toolchain Path"
default "/opt/arm-none-eabi-elf/bin"
config CUSTOM_PREFIX
bool "Using specific prefix of toolchain"
default n
if CUSTOM_PREFIX
config PREFIX
string "Prefix of toolchain"
default "arm-none-eabi-"
endif
if !CUSTOM_PREFIX
config PREFIX
string
default "arm-none-eabi-" if GNU_GCC_NEWLIB
default "arm-linux-musleabi-" if GNU_GCC_MUSL
default "arm-none-eabi-"
endif
config TARGET_FILE
string
default ""
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/magi_cloud/userapps.git
git@gitee.com:magi_cloud/userapps.git
magi_cloud
userapps
userapps
main

搜索帮助