1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- choice
- prompt "Target architecture"
- config ADK_CHOOSE_TARGET_ARCH
- bool "Choose target architecture"
- config ADK_LINUX_NATIVE
- bool "native build"
- select ADK_native
- select ADK_NATIVE
- select ADK_TARGET_LIB_LIBC
- depends on ADK_HOST_LINUX
- help
- Make a native build. Use host tools.
- No toolchain will be created.
- config ADK_LINUX_ARM
- bool "arm system"
- select ADK_arm
- help
- Support for ARM systems.
- config ADK_LINUX_AVR32
- bool "avr32 system"
- select ADK_avr32
- help
- Support for AVR32 systems.
- config ADK_LINUX_CRIS
- bool "cris system"
- select ADK_cris
- help
- Support for CRIS systems.
- config ADK_LINUX_MIPS
- bool "mips system"
- select ADK_mips
- help
- Support for MIPS systems.
- config ADK_LINUX_PPC
- bool "ppc system"
- select ADK_ppc
- help
- Support for powerpc systems.
- config ADK_LINUX_PPC64
- bool "ppc64 system"
- select ADK_ppc64
- help
- Support for powerpc64 systems.
- config ADK_LINUX_SPARC
- bool "sparc system"
- select ADK_sparc
- help
- Support for sparc systems.
- config ADK_LINUX_SPARC64
- bool "sparc64 system"
- select ADK_sparc64
- help
- Support for sparc64 systems.
- config ADK_LINUX_SH
- bool "superh system"
- select ADK_sh
- help
- Support for superh systems.
- config ADK_LINUX_X86
- bool "x86 system"
- select ADK_x86
- help
- Support for x86 systems.
- config ADK_LINUX_X86_64
- bool "x86_64 system"
- select ADK_x86_64
- help
- Support for x86_64/amd64 systems.
- endchoice
|