c7382d9db9
Squashed commit of the following: Author: Gregory Nutt <gnutt@nuttx.org> Eliminate complaints from tools/nxstyle Manually fix up kruft left behind by indent.sh Raw application of tools/indent.sh to all new .c and .h files. Still need fixups. Convert all C++ style comments to C style; Covery hex constants to lower case. Convert TABs to spaces Beginning of code review process. The first small dent. configs/misoc: Rename os_start to nx_start. arch/misoc/src/minerva/minerva_exit.c: Make name change to match change made to master. Author: Ramtin Amin <keytwo@gmail.com> configs/Kconfig and misoc/nsh/defconfig: Add support for the Verilator board. Author: Juha Niskanen (Haltian) <juha.niskanen@haltian.com> arch/arm/src/stm32l4/stm32l4_lse.c: Ports Jussi Kivilinna's recent STM32F7 LSE change to STM32L4. Author: David Sidrane <david_s5@usa.net> tools/.gitignore: Ignore new tool binaries. Author: Ramtin Amin <keytwo@gmail.com> arch/misoc/src/minerva: Initial merge of minera port.
36 lines
980 B
Plaintext
36 lines
980 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
if ARCH_CHIP_MINERVA
|
|
|
|
choice
|
|
prompt "Toolchain Selection"
|
|
default MINERVA_TOOLCHAIN_GNUW if TOOLCHAIN_WINDOWS
|
|
default MINERVA_TOOLCHAIN_GNUL if !TOOLCHAIN_WINDOWS
|
|
|
|
config MINERVA_TOOLCHAIN_BUILDROOT
|
|
bool "Buildroot (Cygwin or Linux)"
|
|
depends on !WINDOWS_NATIVE
|
|
select ARCH_TOOLCHAIN_GNU
|
|
|
|
config MINERVA_TOOLCHAIN_GNUL
|
|
bool "Generic GNU toolchain under Linux (or other POSIX environment)"
|
|
select ARCH_TOOLCHAIN_GNU
|
|
---help---
|
|
This option should work for any modern GNU toolchain (GCC 4.5 or newer)
|
|
configured for risc64-elf-.
|
|
|
|
config MINERVA_TOOLCHAIN_GNUW
|
|
bool "Generic GNU toolchain under Windows"
|
|
depends on TOOLCHAIN_WINDOWS
|
|
select ARCH_TOOLCHAIN_GNU
|
|
---help---
|
|
This option should work for any modern GNU toolchain (GCC 4.5 or newer)
|
|
configured for risc64-elf-.
|
|
|
|
endchoice # Toolchain Selection
|
|
|
|
endif # ARCH_CHIP_MINERVA
|