config/cc_gcc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Wed Aug 15 10:14:43 2007 +0000 (2007-08-15)
changeset 331 0c05f9ea3254
parent 330 447b203edc2e
child 346 33e5e62eeee7
permissions -rw-r--r--
Get rid of the core cc selection. It is now the same as the final compiler.
     1 # Compiler options
     2 
     3 choice
     4     bool
     5     prompt "gcc version"
     6 
     7 config CC_V_2_95_3
     8     bool
     9     prompt "2.95.3 (OBSOLETE)"
    10     depends on OBSOLETE
    11 
    12 config CC_V_3_2_3
    13     bool
    14     prompt "3.2.3 (OBSOLETE)"
    15     depends on OBSOLETE
    16 
    17 config CC_V_3_3_6
    18     bool
    19     prompt "3.3.6 (OBSOLETE)"
    20     depends on OBSOLETE
    21 
    22 config CC_V_3_4_6
    23     bool
    24     prompt "3.4.6 (OBSOLETE)"
    25     depends on OBSOLETE
    26 
    27 config CC_V_4_0_0
    28     bool
    29     prompt "4.0.0"
    30 
    31 config CC_V_4_0_1
    32     bool
    33     prompt "4.0.1"
    34 
    35 config CC_V_4_0_2
    36     bool
    37     prompt "4.0.2"
    38 
    39 config CC_V_4_0_3
    40     bool
    41     prompt "4.0.3"
    42 
    43 config CC_V_4_0_4
    44     bool
    45     prompt "4.0.4"
    46 
    47 config CC_V_4_1_0
    48     bool
    49     prompt "4.1.0"
    50 
    51 config CC_V_4_1_1
    52     bool
    53     prompt "4.1.1"
    54 
    55 config CC_V_4_1_2
    56     bool
    57     prompt "4.1.2"
    58 
    59 config CC_V_4_2_0
    60     bool
    61     prompt "4.2.0"
    62 
    63 config CC_V_4_2_1
    64     bool
    65     prompt "4.2.1"
    66 
    67 # CT_INSERT_VERSION_ABOVE
    68 # Don't remove above line!
    69 endchoice
    70 
    71 config CC_VERSION
    72     string
    73     default "2.95.3" if CC_V_2_95_3
    74     default "3.2.3" if CC_V_3_2_3
    75     default "3.3.6" if CC_V_3_3_6
    76     default "3.4.6" if CC_V_3_4_6
    77     default "4.0.0" if CC_V_4_0_0
    78     default "4.0.1" if CC_V_4_0_1
    79     default "4.0.2" if CC_V_4_0_2
    80     default "4.0.3" if CC_V_4_0_3
    81     default "4.0.4" if CC_V_4_0_4
    82     default "4.1.0" if CC_V_4_1_0
    83     default "4.1.1" if CC_V_4_1_1
    84     default "4.1.2" if CC_V_4_1_2
    85     default "4.2.0" if CC_V_4_2_0
    86     default "4.2.1" if CC_V_4_2_1
    87 # CT_INSERT_VERSION_STRING_ABOVE
    88 # Don't remove above line!
    89 
    90 config CC_CXA_ATEXIT
    91     bool
    92     prompt "__cxa_atexit"
    93     default "y"
    94     help
    95       If you get the missing symbol "__cxa_atexit" when building c++ programs,
    96       you might want to try disabling this option.
    97 
    98 config CC_CORE_EXTRA_CONFIG
    99     string
   100     prompt "Core gcc extra config"
   101     default ""
   102     help
   103       Extra flags to pass onto ./configure when configuring the core gcc.
   104       
   105       The core gcc is a stripped down, C-only compiler needed to build
   106       the C library. Kinda bootstrap gcc, if you wish.
   107 
   108 config CC_EXTRA_CONFIG
   109     string
   110     prompt "gcc extra config"
   111     default ""
   112     help
   113       Extra flags to pass onto ./configure when configuring gcc.