config/companion_libs/mpc.in
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Thu Jan 10 00:27:13 2013 +0100 (2013-01-10)
changeset 3159 fb71cad4b085
parent 2957 3e2f2100a76d
child 3220 2685dfa9de14
permissions -rw-r--r--
arch/arm: OABI is no more, switch to only EABI

Well, leave the prompt as an OBSOLETE thing, scheduled to
be removed soon.

As an indication OABI lives its last days, gcc-4.8 will no
longer recognise non-EABI targets.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
     1 # MPC options
     2 
     3 choice
     4     bool
     5     prompt "MPC version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config MPC_V_0_9
    10     bool
    11     prompt "0.9"
    12 
    13 config MPC_V_0_8_2
    14     bool
    15     prompt "0.8.2"
    16 
    17 
    18 config MPC_V_0_8_1
    19     bool
    20     prompt "0.8.1"
    21 
    22 config MPC_V_0_7
    23     bool
    24     prompt "0.7"
    25 
    26 endchoice
    27 
    28 config MPC_VERSION
    29     string
    30 # Don't remove next line
    31 # CT_INSERT_VERSION_STRING_BELOW
    32     default "0.9" if MPC_V_0_9
    33     default "0.8.2" if MPC_V_0_8_2
    34     default "0.8.1" if MPC_V_0_8_1
    35     default "0.7" if MPC_V_0_7