mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-25 23:41:05 +00:00
6121776594
Since I removed EXPERIMENTAL to most of gcc versions, the configuration is now broken, as the required companion libraries versions are not selectable, as they are still hidden behind EXPERIMENTAL. Reported-by: Claudio Henrique Fortes Felix (chffelix on irc://irc.freenode.net/crosstool-ng) Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
42 lines
634 B
Plaintext
42 lines
634 B
Plaintext
# MPC options
|
|
|
|
choice
|
|
bool
|
|
prompt "MPC version"
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_BELOW
|
|
|
|
config MPC_V_0_9
|
|
bool
|
|
prompt "0.9"
|
|
|
|
config MPC_V_0_8_2
|
|
bool
|
|
prompt "0.8.2"
|
|
|
|
|
|
config MPC_V_0_8_1
|
|
bool
|
|
prompt "0.8.1"
|
|
|
|
config MPC_V_0_7
|
|
bool
|
|
prompt "0.7"
|
|
|
|
config MPC_V_0_6
|
|
bool
|
|
prompt "0.6 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
endchoice
|
|
|
|
config MPC_VERSION
|
|
string
|
|
# Don't remove next line
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
|
default "0.9" if MPC_V_0_9
|
|
default "0.8.2" if MPC_V_0_8_2
|
|
default "0.8.1" if MPC_V_0_8_1
|
|
default "0.7" if MPC_V_0_7
|
|
default "0.6" if MPC_V_0_6
|