summaryrefslogtreecommitdiff
path: root/nuttx/arch/avr/src/avr32/Kconfig
blob: b542381ea73c5e69a802954b988b91695bf7e743 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#

if ARCH_FAMILY_AVR32
comment "AVR32 Configuration Options"

choice
	prompt "Toolchain"
	default AVR32_AVRTOOLSW if HOST_WINDOWS
	default AVR32_AVRTOOLSL if HOST_LINUX

config AVR32_AVRTOOLSW
	bool "AVR tools for Windows"
	depends on HOST_WINDOWS

config AVR32_AVRTOOLSL
	bool "AVR tools for Windows"
	depends on HOST_LINUX

endchoice # Toolchain
endif