blob: 8137d8be47967b7a1dd85efd8b155871213f9644 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#
# 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
choice
prompt "Target NAN Encoding"
default CONFIG_MIPS_NAN_LEGACY
help
This is the NAN Encoding you want to use. Chose either Legacy
or 2008.
config CONFIG_MIPS_NAN_LEGACY
bool "LEGACY"
config CONFIG_MIPS_NAN_2008
bool "2008"
endchoice
config UCLIBC_USE_MIPS_PREFETCH
bool "Use MIPS prefetch optimization for memcpy/memset"
default y
help
You get better performance when you use Prefetch.
https://gcc.gnu.org/projects/prefetch.html#mips
|