config/cc_gcc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Oct 30 19:18:11 2007 +0000 (2007-10-30)
changeset 408 6c6eeb6a6936
parent 346 33e5e62eeee7
child 424 8056e0db5c4a
permissions -rw-r--r--
Add EXPERIMENTAL gcc-4.2.2.
     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 config CC_V_4_2_2
    68     bool
    69     prompt "4.2.2"
    70     depends on EXPERIMENTAL
    71 
    72 # CT_INSERT_VERSION_ABOVE
    73 # Don't remove above line!
    74 endchoice
    75 
    76 config CC_VERSION
    77     string
    78     default "2.95.3" if CC_V_2_95_3
    79     default "3.2.3" if CC_V_3_2_3
    80     default "3.3.6" if CC_V_3_3_6
    81     default "3.4.6" if CC_V_3_4_6
    82     default "4.0.0" if CC_V_4_0_0
    83     default "4.0.1" if CC_V_4_0_1
    84     default "4.0.2" if CC_V_4_0_2
    85     default "4.0.3" if CC_V_4_0_3
    86     default "4.0.4" if CC_V_4_0_4
    87     default "4.1.0" if CC_V_4_1_0
    88     default "4.1.1" if CC_V_4_1_1
    89     default "4.1.2" if CC_V_4_1_2
    90     default "4.2.0" if CC_V_4_2_0
    91     default "4.2.1" if CC_V_4_2_1
    92     default "4.2.2" if CC_V_4_2_2
    93 # CT_INSERT_VERSION_STRING_ABOVE
    94 # Don't remove above line!
    95 
    96 config CC_CXA_ATEXIT
    97     bool
    98     prompt "__cxa_atexit"
    99     default "y"
   100     help
   101       If you get the missing symbol "__cxa_atexit" when building C++ programs,
   102       you might want to try disabling this option.
   103 
   104 config CC_CORE_EXTRA_CONFIG
   105     string
   106     prompt "Core gcc extra config"
   107     default ""
   108     help
   109       Extra flags to pass onto ./configure when configuring the core gcc.
   110       
   111       The core gcc is a stripped down, C-only compiler needed to build
   112       the C library. Kinda bootstrap gcc, if you wish.
   113 
   114 config CC_EXTRA_CONFIG
   115     string
   116     prompt "gcc extra config"
   117     default ""
   118     help
   119       Extra flags to pass onto ./configure when configuring gcc.