blob: 919e80c59e8aaec787f8271dbceeaa15581bae66 (
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
|
#
# 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
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
|