mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-13 08:20:06 +00:00
4b7c2e32ac
Update all architectures (some with pointer to the specs, when available). /trunk/docs/overview.txt | 8 8 0 0 ++++++++ /trunk/arch/arm/config.in | 3 3 0 0 +++ /trunk/arch/powerpc/config.in | 3 3 0 0 +++ /trunk/arch/ia64/config.in | 3 3 0 0 +++ /trunk/arch/alpha/config.in | 2 2 0 0 ++ /trunk/arch/x86/config.in | 3 3 0 0 +++ /trunk/arch/mips/config.in | 3 3 0 0 +++ /trunk/arch/sh/config.in | 3 3 0 0 +++ /trunk/arch/x86_64/config.in | 3 3 0 0 +++ 9 files changed, 31 insertions(+)
61 lines
1.2 KiB
Plaintext
61 lines
1.2 KiB
Plaintext
# Alpha specific configuration file
|
|
|
|
config ARCH_alpha
|
|
help
|
|
The Alpha architecture.
|
|
|
|
choice
|
|
bool
|
|
prompt "Variant"
|
|
|
|
config ARCH_ALPHA_EV4
|
|
bool
|
|
prompt "EV4"
|
|
|
|
config ARCH_ALPHA_EV45
|
|
bool
|
|
prompt "EV45"
|
|
|
|
config ARCH_ALPHA_EV5
|
|
bool
|
|
prompt "EV5"
|
|
|
|
config ARCH_ALPHA_EV56
|
|
bool
|
|
prompt "EV56"
|
|
|
|
config ARCH_ALPHA_EV6
|
|
bool
|
|
prompt "EV6"
|
|
|
|
config ARCH_ALPHA_EV67
|
|
bool
|
|
prompt "EV67"
|
|
|
|
endchoice
|
|
|
|
config ARCH_ALPHA_VARIANT
|
|
string
|
|
default "ev4" if ARCH_ALPHA_EV4
|
|
default "ev45" if ARCH_ALPHA_EV45
|
|
default "ev5" if ARCH_ALPHA_EV5
|
|
default "ev56" if ARCH_ALPHA_EV56
|
|
default "ev6" if ARCH_ALPHA_EV6
|
|
default "ev67" if ARCH_ALPHA_EV67
|
|
|
|
config ARCH_CPU
|
|
default "ev4" if ARCH_ALPHA_EV4
|
|
default "ev45" if ARCH_ALPHA_EV45
|
|
default "ev5" if ARCH_ALPHA_EV5
|
|
default "ev56" if ARCH_ALPHA_EV56
|
|
default "ev6" if ARCH_ALPHA_EV6
|
|
default "ev67" if ARCH_ALPHA_EV67
|
|
|
|
config ARCH_TUNE
|
|
default "ev4" if ARCH_ALPHA_EV4
|
|
default "ev45" if ARCH_ALPHA_EV45
|
|
default "ev5" if ARCH_ALPHA_EV5
|
|
default "ev56" if ARCH_ALPHA_EV56
|
|
default "ev6" if ARCH_ALPHA_EV6
|
|
default "ev67" if ARCH_ALPHA_EV67
|