config/cc/gcc.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 04 14:38:41 2009 +0000 (2009-01-04)
changeset 1121 4b7ed9da5a21
parent 923 54fc137f9dc8
child 1129 cf598d70f6ea
permissions -rw-r--r--
Remove support for gcc-2.95.3, it has never ever been tested.

/trunk/config/cc/gcc.in | 6 0 6 0 ------
/trunk/scripts/build/libc/glibc.sh | 4 0 4 0 ----
/trunk/scripts/build/libc/uClibc.sh | 4 0 4 0 ----
3 files changed, 14 deletions(-)
yann@448
     1
# Compiler options
yann@448
     2
yann@923
     3
config CC_gcc
yann@923
     4
    select CC_SUPPORT_CXX
yann@923
     5
    select CC_SUPPORT_FORTRAN
yann@923
     6
    select CC_SUPPORT_JAVA
yann@923
     7
    select CC_SUPPORT_ADA
yann@923
     8
    select CC_SUPPORT_OBJC
yann@923
     9
    select CC_SUPPORT_OBJCXX
yann@923
    10
    help
yann@923
    11
      gcc is the full-blown GNU compiler. This is what most people will choose.
yann@923
    12
      
yann@923
    13
      gcc supports many languages, a powerful code parser, optimised binary
yann@923
    14
      output, and lots of other features.
yann@923
    15
yann@448
    16
choice
yann@448
    17
    bool
yann@448
    18
    prompt "gcc version"
yann@448
    19
yann@448
    20
config CC_V_3_2_3
yann@448
    21
    bool
yann@448
    22
    prompt "3.2.3 (OBSOLETE)"
yann@448
    23
    depends on OBSOLETE
yann@448
    24
yann@448
    25
config CC_V_3_3_6
yann@448
    26
    bool
yann@448
    27
    prompt "3.3.6 (OBSOLETE)"
yann@448
    28
    depends on OBSOLETE
yann@448
    29
yann@448
    30
config CC_V_3_4_6
yann@448
    31
    bool
yann@448
    32
    prompt "3.4.6 (OBSOLETE)"
yann@448
    33
    depends on OBSOLETE
yann@448
    34
yann@448
    35
config CC_V_4_0_0
yann@448
    36
    bool
yann@448
    37
    prompt "4.0.0 (OBSOLETE)"
yann@448
    38
    depends on OBSOLETE
yann@448
    39
yann@448
    40
config CC_V_4_0_1
yann@448
    41
    bool
yann@448
    42
    prompt "4.0.1 (OBSOLETE)"
yann@448
    43
    depends on OBSOLETE
yann@448
    44
yann@448
    45
config CC_V_4_0_2
yann@448
    46
    bool
yann@448
    47
    prompt "4.0.2 (OBSOLETE)"
yann@448
    48
    depends on OBSOLETE
yann@448
    49
yann@448
    50
config CC_V_4_0_3
yann@448
    51
    bool
yann@448
    52
    prompt "4.0.3 (OBSOLETE)"
yann@448
    53
    depends on OBSOLETE
yann@448
    54
yann@448
    55
config CC_V_4_0_4
yann@448
    56
    bool
yann@448
    57
    prompt "4.0.4"
yann@448
    58
yann@448
    59
config CC_V_4_1_0
yann@448
    60
    bool
yann@448
    61
    prompt "4.1.0 (OBSOLETE)"
yann@448
    62
    depends on OBSOLETE
yann@448
    63
yann@448
    64
config CC_V_4_1_1
yann@448
    65
    bool
yann@448
    66
    prompt "4.1.1 (OBSOLETE)"
yann@448
    67
    depends on OBSOLETE
yann@448
    68
yann@448
    69
config CC_V_4_1_2
yann@448
    70
    bool
yann@448
    71
    prompt "4.1.2"
yann@448
    72
yann@448
    73
config CC_V_4_2_0
yann@448
    74
    bool
yann@448
    75
    prompt "4.2.0"
yann@448
    76
yann@448
    77
config CC_V_4_2_1
yann@448
    78
    bool
yann@448
    79
    prompt "4.2.1"
yann@448
    80
yann@448
    81
config CC_V_4_2_2
yann@448
    82
    bool
yann@448
    83
    prompt "4.2.2"
yann@448
    84
yann@448
    85
config CC_V_4_2_3
yann@448
    86
    bool
yann@551
    87
    prompt "4.2.3"
yann@448
    88
yann@687
    89
config CC_V_4_2_4
yann@687
    90
    bool
yann@687
    91
    prompt "4.2.4"
yann@687
    92
yann@550
    93
config CC_V_4_3_0
yann@550
    94
    bool
yann@550
    95
    prompt "4.3.0 (EXPERIMENTAL)"
yann@550
    96
    depends on EXPERIMENTAL
yann@550
    97
    select CC_GCC_4_3_or_later
yann@550
    98
yann@550
    99
config CC_V_4_3_1
yann@550
   100
    bool
yann@794
   101
    prompt "4.3.1"
yann@550
   102
    select CC_GCC_4_3_or_later
yann@550
   103
yann@874
   104
config CC_V_4_3_2
yann@874
   105
    bool
yann@881
   106
    prompt "4.3.2"
yann@874
   107
    select CC_GCC_4_3_or_later
yann@874
   108
yann@448
   109
# CT_INSERT_VERSION_ABOVE
yann@448
   110
# Don't remove above line!
yann@448
   111
endchoice
yann@448
   112
yann@448
   113
config CC_VERSION
yann@448
   114
    string
yann@448
   115
    default "3.2.3" if CC_V_3_2_3
yann@448
   116
    default "3.3.6" if CC_V_3_3_6
yann@448
   117
    default "3.4.6" if CC_V_3_4_6
yann@448
   118
    default "4.0.0" if CC_V_4_0_0
yann@448
   119
    default "4.0.1" if CC_V_4_0_1
yann@448
   120
    default "4.0.2" if CC_V_4_0_2
yann@448
   121
    default "4.0.3" if CC_V_4_0_3
yann@448
   122
    default "4.0.4" if CC_V_4_0_4
yann@448
   123
    default "4.1.0" if CC_V_4_1_0
yann@448
   124
    default "4.1.1" if CC_V_4_1_1
yann@448
   125
    default "4.1.2" if CC_V_4_1_2
yann@448
   126
    default "4.2.0" if CC_V_4_2_0
yann@448
   127
    default "4.2.1" if CC_V_4_2_1
yann@448
   128
    default "4.2.2" if CC_V_4_2_2
yann@448
   129
    default "4.2.3" if CC_V_4_2_3
yann@687
   130
    default "4.2.4" if CC_V_4_2_4
yann@550
   131
    default "4.3.0" if CC_V_4_3_0
yann@550
   132
    default "4.3.1" if CC_V_4_3_1
yann@874
   133
    default "4.3.2" if CC_V_4_3_2
yann@448
   134
# CT_INSERT_VERSION_STRING_ABOVE
yann@448
   135
# Don't remove above line!
yann@448
   136
yann@545
   137
config CC_GCC_4_3_or_later
yann@545
   138
    bool
yann@545
   139
    default n
yann@602
   140
    select GMP_MPFR
yann@545
   141
yann@448
   142
config CC_CXA_ATEXIT
yann@448
   143
    bool
yann@765
   144
    prompt "Use __cxa_atexit"
yann@765
   145
    default y
yann@850
   146
    depends on ! BARE_METAL
yann@448
   147
    help
yann@448
   148
      If you get the missing symbol "__cxa_atexit" when building C++ programs,
yann@448
   149
      you might want to try disabling this option.
yann@448
   150
yann@765
   151
choice
yann@765
   152
    bool
yann@765
   153
    prompt "Use sjlj for exceptions"
yann@765
   154
    default CC_SJLJ_EXCEPTIONS_CONFIGURE
yann@850
   155
    depends on ! BARE_METAL
yann@765
   156
yann@765
   157
# This config option is used nowhere in the code on purpose.
yann@765
   158
# It only serves as a choice entry to force neither using nor not using sjlj
yann@765
   159
config CC_SJLJ_EXCEPTIONS_CONFIGURE
yann@765
   160
    bool
yann@765
   161
    prompt "Let configure decide"
yann@765
   162
    help
yann@765
   163
      Let configure decide if setjmp/longjmp should be used to handle
yann@765
   164
      exceptions.
yann@765
   165
      
yann@765
   166
      Choose that if you trust configure to detect the correct settings.
yann@765
   167
      This is the default choice.
yann@765
   168
yann@765
   169
config CC_SJLJ_EXCEPTIONS_USE
yann@765
   170
    bool
yann@765
   171
    prompt "Force using sjlj"
yann@765
   172
    help
yann@765
   173
      Do use setjmp/longjmp for exceptions.
yann@765
   174
      This is gcc's --enable-sjlj-exceptions configure switch.
yann@765
   175
      
yann@765
   176
      Choose that if you want to use setjmp/longjmp to handle exceptions.
yann@765
   177
yann@765
   178
config CC_SJLJ_EXCEPTIONS_DONT_USE
yann@765
   179
    bool
yann@765
   180
    prompt "Force not using sjlj"
yann@765
   181
    help
yann@765
   182
      Do not use setjmp/longjmp for exceptions.
yann@765
   183
      This is gcc's --disable-sjlj-exceptions configure switch.
yann@765
   184
      
yann@765
   185
      Choose that if you want to not use setjmp/longjmp to handle exceptions.
yann@765
   186
yann@765
   187
endchoice
yann@765
   188
yann@448
   189
config CC_CORE_EXTRA_CONFIG
yann@448
   190
    string
yann@448
   191
    prompt "Core gcc extra config"
yann@448
   192
    default ""
yann@448
   193
    help
yann@448
   194
      Extra flags to pass onto ./configure when configuring the core gcc.
yann@448
   195
      
yann@448
   196
      The core gcc is a stripped down, C-only compiler needed to build
yann@448
   197
      the C library. Kinda bootstrap gcc, if you wish.
yann@448
   198
yann@448
   199
config CC_EXTRA_CONFIG
yann@448
   200
    string
yann@448
   201
    prompt "gcc extra config"
yann@448
   202
    default ""
yann@850
   203
    depends on ! BARE_METAL
yann@448
   204
    help
yann@448
   205
      Extra flags to pass onto ./configure when configuring gcc.
yann@466
   206
yann@545
   207
config CC_PKGVERSION
yann@545
   208
    string
yann@545
   209
    prompt "gcc ID string"
yann@545
   210
    depends on CC_GCC_4_3_or_later
yann@545
   211
    default "crosstool-NG-${CT_VERSION}"
yann@545
   212
    help
yann@545
   213
      Specify a string that identifies your package. You may wish to include
yann@545
   214
      a build number or build date. This version string will be included in
yann@545
   215
      the output of gcc --version.
yann@545
   216
yann@545
   217
      This is passed to the configure flag --with-pkgversion.
yann@545
   218
yann@545
   219
config CC_BUGURL
yann@545
   220
    string
yann@545
   221
    prompt "gcc bug URL"
yann@545
   222
    depends on CC_GCC_4_3_or_later
yann@545
   223
    default ""
yann@545
   224
    help
yann@545
   225
      Specify the URL that users should visit if they wish to report a bug.