config/companion_libs/gmp.in
author Zhenqiang Chen <zhenqiang.chen@linaro.org>
Fri Nov 18 11:32:50 2011 +0800 (2011-11-18)
branch1.13
changeset 2841 64fe22ca6e6f
parent 1984 95b4a458fd60
child 2957 3e2f2100a76d
permissions -rw-r--r--
cc/gcc: Apply CT_CC_GCC_DISABLE_PCH to do_cc_core.

Otherwise, users have to input --disable-libstdcxx-pch option
when building bare-metal CANADIAN C++ compiler.

Reviewed-by: Michael Hope
Signed-off-by: Zhenqiang Chen <zhenqiang.chen@linaro.org>
(transplanted from e3e1c9d45bddfbfb433ee9d583faf42fa31f50c0)
     1 # GMP options
     2 
     3 choice
     4     bool
     5     prompt "GMP version"
     6 # Don't remove next line
     7 # CT_INSERT_VERSION_BELOW
     8 
     9 config GMP_V_5_0_2
    10     bool
    11     prompt "5.0.2 (EXPERIMENTAL)"
    12     depends on EXPERIMENTAL
    13 
    14 config GMP_V_5_0_1
    15     bool
    16     prompt "5.0.1 (EXPERIMENTAL)"
    17     depends on EXPERIMENTAL
    18 
    19 config GMP_V_4_3_2
    20     bool
    21     prompt "4.3.2"
    22 
    23 config GMP_V_4_3_1
    24     bool
    25     prompt "4.3.1"
    26 
    27 config GMP_V_4_3_0
    28     bool
    29     prompt "4.3.0"
    30 
    31 config GMP_V_4_2_4
    32     bool
    33     prompt "4.2.4 (OBSOLETE)"
    34     depends on OBSOLETE
    35 
    36 config GMP_V_4_2_2
    37     bool
    38     prompt "4.2.2 (OBSOLETE)"
    39     depends on OBSOLETE
    40 
    41 endchoice
    42 
    43 config GMP_VERSION
    44     string
    45 # Don't remove next line
    46 # CT_INSERT_VERSION_STRING_BELOW
    47     default "5.0.2" if GMP_V_5_0_2
    48     default "5.0.1" if GMP_V_5_0_1
    49     default "4.3.2" if GMP_V_4_3_2
    50     default "4.3.1" if GMP_V_4_3_1
    51     default "4.3.0" if GMP_V_4_3_0
    52     default "4.2.4" if GMP_V_4_2_4
    53     default "4.2.2" if GMP_V_4_2_2