summaryrefslogtreecommitdiff
path: root/extra/Configs/Config.mips
blob: e0b62dd67fa4ced57253557cde82b854bf211d6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# For a description of the syntax of this configuration file,
# see extra/config/Kconfig-language.txt
#

config TARGET_ARCH
	string
	default "mips"

config FORCE_OPTIONS_FOR_ARCH
	bool
	default y
	select ARCH_ANY_ENDIAN
	select ARCH_HAS_UCONTEXT
	select ARCH_HAS_DEPRECATED_SYSCALLS

choice
	prompt "Target ABI"
	default CONFIG_MIPS_O32_ABI
	help
	  This is the ABI you wish to build use.  Choose either O32, N32
	  or N64.

config CONFIG_MIPS_O32_ABI
	bool "O32 ABI"

config CONFIG_MIPS_N32_ABI
	bool "N32 ABI"

config CONFIG_MIPS_N64_ABI
	bool "N64 ABI"

endchoice