2013-02-16 16:32:19 +00:00
|
|
|
#
|
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 08:08:57 -06:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2013-02-16 16:32:19 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
|
|
comment "ARMV6M Configuration Options"
|
|
|
|
|
|
|
|
|
|
choice
|
|
|
|
|
prompt "Toolchain Selection"
|
2017-01-02 07:16:47 -06:00
|
|
|
default ARMV6M_TOOLCHAIN_GNU_EABIW if TOOLCHAIN_WINDOWS
|
|
|
|
|
default ARMV6M_TOOLCHAIN_GNU_EABIL if !TOOLCHAIN_WINDOWS
|
2013-02-16 16:32:19 +00:00
|
|
|
|
|
|
|
|
config ARMV6M_TOOLCHAIN_BUILDROOT
|
|
|
|
|
bool "Buildroot (Cygwin or Linux)"
|
|
|
|
|
depends on !WINDOWS_NATIVE
|
2017-05-13 13:28:15 -06:00
|
|
|
select ARCH_TOOLCHAIN_GNU
|
2013-02-16 16:32:19 +00:00
|
|
|
|
2013-06-13 11:04:18 -06:00
|
|
|
config ARMV6M_TOOLCHAIN_GNU_EABIL
|
|
|
|
|
bool "Generic GNU EABI toolchain under Linux (or other POSIX environment)"
|
2017-05-13 13:28:15 -06:00
|
|
|
select ARCH_TOOLCHAIN_GNU
|
2013-06-13 11:04:18 -06:00
|
|
|
---help---
|
|
|
|
|
This option should work for any modern GNU toolchain (GCC 4.5 or newer)
|
|
|
|
|
configured for arm-none-eabi.
|
|
|
|
|
|
|
|
|
|
config ARMV6M_TOOLCHAIN_GNU_EABIW
|
|
|
|
|
bool "Generic GNU EABI toolchain under Windows"
|
2017-01-02 07:16:47 -06:00
|
|
|
depends on TOOLCHAIN_WINDOWS
|
2020-05-18 22:18:15 +08:00
|
|
|
select CYGWIN_WINTOOL if WINDOWS_CYGWIN
|
2013-02-16 16:32:19 +00:00
|
|
|
---help---
|
|
|
|
|
This option should work for any modern GNU toolchain (GCC 4.5 or newer)
|
|
|
|
|
configured for arm-none-eabi.
|
|
|
|
|
|
|
|
|
|
endchoice
|