mirror of
https://github.com/apache/nuttx.git
synced 2026-08-30 21:53:06 +00:00
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5520 42af7a65-404d-4744-a932-0658087f49c3
58 lines
1.5 KiB
Text
58 lines
1.5 KiB
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see misc/tools/kconfig-language.txt.
|
|
#
|
|
|
|
if ARCH_MIPS32
|
|
comment "MIPS32 Configuration Options"
|
|
|
|
choice
|
|
prompt "Toolchain Selection"
|
|
default MIPS32_TOOLCHAIN_MICROCHIPW_LITE if HOST_WINDOWS
|
|
default MIPS32_TOOLCHAIN_GNU_ELF if !HOST_WINDOWS
|
|
|
|
config MIPS32_TOOLCHAIN_GNU_ELF
|
|
bool "Generic GNU ELF toolchain"
|
|
---help---
|
|
This option should work for any modern GNU toolchain (GCC 4.5 or newer)
|
|
configured for mips32-elf.
|
|
|
|
config MIPS32_TOOLCHAIN_MICROCHIPL
|
|
bool "Microchip C32 toolchain under Linux"
|
|
depends on HOST_LINUX
|
|
|
|
config MIPS32_TOOLCHAIN_MICROCHIPL_LITE
|
|
bool "Microchip C32 toolchain under Linux (Lite edition)"
|
|
depends on HOST_LINUX
|
|
|
|
config MIPS32_TOOLCHAIN_MICROCHIPW
|
|
bool "Microchip C32 toolchain under Windows"
|
|
depends on HOST_WINDOWS
|
|
|
|
config MIPS32_TOOLCHAIN_MICROCHIPW_LITE
|
|
bool "Microchip C32 toolchain under Windows (Lite edition)"
|
|
depends on HOST_WINDOWS
|
|
|
|
config MIPS32_TOOLCHAIN_MICROCHIPOPENL
|
|
bool "microchipOpen toolchain under Linux"
|
|
depends on HOST_LINUX
|
|
|
|
config MIPS32_TOOLCHAIN_PINGUINOW
|
|
bool "Pinguino mips-elf toolchain under Windows"
|
|
depends on HOST_WINDOWS
|
|
|
|
config MIPS32_TOOLCHAIN_PINGUINOL
|
|
bool "Pinguino mips-elf toolchain under OS X or Linux"
|
|
depends on HOST_LINUX || HOST_OSX
|
|
|
|
endchoice
|
|
|
|
config MIPS32_FRAMEPOINTER
|
|
bool "ABI Uses Frame Pointer"
|
|
default n
|
|
depends on ARCH_HAVE_VFORK
|
|
---help---
|
|
Register r30 may be a frame pointer in some ABIs. Or may just be
|
|
saved register s8. It makes a difference for vfork handling.
|
|
|
|
endif
|