scripts/build/cc/gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Oct 24 22:03:47 2010 +0200 (2010-10-24)
changeset 2161 3c648212298e
parent 2141 a09246191120
child 2162 3cec1d170ba4
permissions -rw-r--r--
Revert #a09246191120: cc/gcc: fix C++ headers location

This was intended as a fix for g++ not finding its headers,
but it breaks in othe horrible ways. So just revert it.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
yann@850
     1
# This file adds the function to build the gcc C compiler
yann@850
     2
# Copyright 2007 Yann E. MORIN
yann@850
     3
# Licensed under the GPL v2. See COPYING in the root of this package
yann@850
     4
yann@850
     5
# Download gcc
yann@850
     6
do_cc_get() {
yann@850
     7
    # Ah! gcc folks are kind of 'different': they store the tarballs in
yann@850
     8
    # subdirectories of the same name! That's because gcc is such /crap/ that
yann@850
     9
    # it is such /big/ that it needs being splitted for distribution! Sad. :-(
yann@850
    10
    # Arrgghh! Some of those versions does not follow this convention:
yann@850
    11
    # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
yann@850
    12
    # subdirectory! You bastard!
yann@1389
    13
    CT_GetFile "gcc-${CT_CC_VERSION}"                                                       \
yann@1389
    14
               {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/gcc-${CT_CC_VERSION}}         \
yann@1389
    15
               ftp://ftp.irisa.fr/pub/mirrors/gcc.gnu.org/gcc/releases/gcc-${CT_CC_VERSION} \
yann@1389
    16
               ftp://ftp.uvsq.fr/pub/gcc/snapshots/${CT_CC_VERSION}
yann@1268
    17
yann@1129
    18
    # Starting with GCC 4.3, ecj is used for Java, and will only be
yann@1129
    19
    # built if the configure script finds ecj.jar at the top of the
yann@1129
    20
    # GCC source tree, which will not be there unless we get it and
yann@1129
    21
    # put it there ourselves
yann@1129
    22
    if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y" ]; then
yann@1129
    23
        CT_GetFile ecj-latest .jar ftp://gcc.gnu.org/pub/java   \
yann@1129
    24
                                   ftp://sourceware.org/pub/java
yann@1129
    25
    fi
yann@850
    26
}
yann@850
    27
yann@850
    28
# Extract gcc
yann@850
    29
do_cc_extract() {
yann@1389
    30
    CT_Extract "gcc-${CT_CC_VERSION}"
yann@1901
    31
    CT_Patch "gcc" "${CT_CC_VERSION}"
yann@1268
    32
yann@1129
    33
    # Copy ecj-latest.jar to ecj.jar at the top of the GCC source tree
yann@1389
    34
    if [ "${CT_CC_LANG_JAVA_USE_ECJ}" = "y"                     \
yann@1389
    35
         -a ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar"   \
yann@1259
    36
       ]; then
yann@1389
    37
        CT_DoExecLog ALL cp -v "${CT_TARBALLS_DIR}/ecj-latest.jar" "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/ecj.jar"
yann@1129
    38
    fi
yann@850
    39
}
yann@850
    40
yann@850
    41
#------------------------------------------------------------------------------
yann@850
    42
# Core gcc pass 1
yann@850
    43
do_cc_core_pass_1() {
yann@850
    44
    # If we're building for bare metal, build the static core gcc,
yann@850
    45
    # with libgcc.
linux@1925
    46
    # In case we're not bare metal and building a canadian compiler, do nothing
yann@850
    47
    # In case we're not bare metal, and we're NPTL, build the static core gcc.
yann@850
    48
    # In any other case, do nothing.
linux@1925
    49
    case "${CT_BARE_METAL},${CT_CANADIAN},${CT_THREADS}" in
yann@1983
    50
        y,*,*)  do_cc_core mode=static;;
linux@1925
    51
        ,y,*)   ;;
yann@1980
    52
        ,,nptl) do_cc_core mode=static;;
yann@850
    53
        *)      ;;
yann@850
    54
    esac
yann@850
    55
}
yann@850
    56
yann@850
    57
# Core gcc pass 2
yann@850
    58
do_cc_core_pass_2() {
yann@850
    59
    # In case we're building for bare metal, do nothing, we already have
yann@850
    60
    # our compiler.
linux@1925
    61
    # In case we're not bare metal and building a canadian compiler, do nothing
yann@892
    62
    # In case we're NPTL, build the shared core gcc and the target libgcc.
yann@892
    63
    # In any other case, build the static core gcc and, if using gcc-4.3+,
yann@892
    64
    # also build the target libgcc.
linux@1925
    65
    case "${CT_BARE_METAL},${CT_CANADIAN},${CT_THREADS}" in
yann@1983
    66
        y,*,*)  do_cc_core mode=baremetal build_libgcc=yes build_libstdcxx=yes;;
yann@1983
    67
        ,y,*)   ;;
linux@1925
    68
        ,,nptl)
yann@892
    69
            do_cc_core mode=shared build_libgcc=yes
yann@892
    70
            ;;
bartvdrmeulen@2017
    71
        ,,win32) do_cc_core mode=static build_libgcc=yes
bartvdrmeulen@2017
    72
            ;;
yann@892
    73
        *)  if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
yann@892
    74
                do_cc_core mode=static build_libgcc=yes
yann@892
    75
            else
yann@1980
    76
                do_cc_core mode=static
yann@892
    77
            fi
yann@892
    78
            ;;
yann@850
    79
    esac
yann@850
    80
}
yann@850
    81
yann@850
    82
#------------------------------------------------------------------------------
yann@850
    83
# Build core gcc
yann@850
    84
# This function is used to build both the static and the shared core C conpiler,
yann@850
    85
# with or without the target libgcc. We need to know wether:
yann@850
    86
#  - we're building static, shared or bare metal: mode=[static|shared|baremetal]
yann@1980
    87
#  - we need to build libgcc or not             : build_libgcc=[yes|no]     (default: no)
yann@1983
    88
#  - we need to build libstdc++ or not          : build_libstdcxx=[yes|no]  (default: no)
yann@850
    89
# Usage: do_cc_core_static mode=[static|shared|baremetal] build_libgcc=[yes|no]
yann@850
    90
do_cc_core() {
yann@850
    91
    local mode
yann@1980
    92
    local build_libgcc=no
yann@1983
    93
    local build_libstdcxx=no
yann@850
    94
    local core_prefix_dir
yann@1107
    95
    local lang_opt
yann@1479
    96
    local tmp
yann@1479
    97
    local -a extra_config
yann@1892
    98
    local core_LDFLAGS
yann@1981
    99
    local -a core_targets
yann@850
   100
yann@1980
   101
    while [ $# -ne 0 ]; do
yann@1980
   102
        eval "${1}"
yann@1980
   103
        shift
yann@1980
   104
    done
yann@850
   105
yann@1107
   106
    lang_opt=c
yann@850
   107
    case "${mode}" in
yann@850
   108
        static)
yann@850
   109
            core_prefix_dir="${CT_CC_CORE_STATIC_PREFIX_DIR}"
yann@1479
   110
            extra_config+=("--with-newlib")
yann@1479
   111
            extra_config+=("--enable-threads=no")
yann@1479
   112
            extra_config+=("--disable-shared")
yann@1983
   113
            copy_headers=y  # For baremetal, as there's no headers to copy,
yann@1983
   114
                            # we copy an empty directory. So, who cares?
yann@850
   115
            ;;
yann@850
   116
        shared)
yann@850
   117
            core_prefix_dir="${CT_CC_CORE_SHARED_PREFIX_DIR}"
yann@1479
   118
            extra_config+=("--enable-shared")
yann@850
   119
            copy_headers=y
yann@850
   120
            ;;
yann@850
   121
        baremetal)
yann@850
   122
            core_prefix_dir="${CT_PREFIX_DIR}"
yann@1479
   123
            extra_config+=("--with-newlib")
yann@1479
   124
            extra_config+=("--enable-threads=no")
yann@1479
   125
            extra_config+=("--disable-shared")
yann@1107
   126
            [ "${CT_CC_LANG_CXX}" = "y" ] && lang_opt="${lang_opt},c++"
yann@850
   127
            copy_headers=n
yann@850
   128
            ;;
yann@1980
   129
        *)
yann@1980
   130
            CT_Abort "Internal Error: 'mode' must be one of: 'static', 'shared' or 'baremetal', not '${mode:-(empty)}'"
yann@1980
   131
            ;;
yann@850
   132
    esac
yann@850
   133
yann@1980
   134
    CT_DoStep INFO "Installing ${mode} core C compiler"
yann@1980
   135
    mkdir -p "${CT_BUILD_DIR}/build-cc-core-${mode}"
yann@1980
   136
    cd "${CT_BUILD_DIR}/build-cc-core-${mode}"
yann@1980
   137
linux@1898
   138
    # Bare metal delivers the core compiler as final compiler, so add version info and bugurl
linux@1898
   139
    [ -n "${CT_CC_BUGURL}" ]     && extra_config+=("--with-bugurl=${CT_CC_BUGURL}")
linux@1898
   140
    [ -n "${CT_CC_PKGVERSION}" ] && extra_config+=("--with-pkgversion=${CT_CC_PKGVERSION}")
linux@1898
   141
yann@850
   142
    if [ "${copy_headers}" = "y" ]; then
yann@850
   143
        CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
yann@1979
   144
        CT_DoExecLog ALL cp -a "${CT_HEADERS_DIR}" "${core_prefix_dir}/${CT_TARGET}/include"
yann@850
   145
    fi
yann@850
   146
yann@850
   147
    CT_DoLog EXTRA "Configuring ${mode} core C compiler"
yann@850
   148
yann@1479
   149
    for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
yann@1479
   150
        eval tmp="\${CT_ARCH_WITH_${tmp}}"
yann@1479
   151
        if [ -n "${tmp}" ]; then
yann@1479
   152
            extra_config+=("${tmp}")
yann@1479
   153
        fi
yann@1479
   154
    done
yann@850
   155
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
yann@1479
   156
        extra_config+=("--enable-__cxa_atexit")
yann@850
   157
    else
yann@1479
   158
        extra_config+=("--disable-__cxa_atexit")
yann@850
   159
    fi
yann@850
   160
yann@1892
   161
    # When companion libraries are build static (eg !shared),
yann@1892
   162
    # the libstdc++ is not pulled automatically, although it
yann@1892
   163
    # is needed. Shoe-horn it in our LDFLAGS
dwatkins@2070
   164
    # Ditto libm on some Fedora boxen
yann@1893
   165
    if [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
dwatkins@2070
   166
        core_LDFLAGS='-lstdc++ -lm'
yann@1892
   167
    fi
yann@1893
   168
    if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
yann@1893
   169
        extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
yann@1893
   170
        extra_config+=("--with-mpfr=${CT_COMPLIBS_DIR}")
yann@1893
   171
    fi
yann@2122
   172
    if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
yann@2122
   173
        extra_config+=("--with-mpc=${CT_COMPLIBS_DIR}")
yann@2122
   174
    fi
yann@2122
   175
    if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
yann@1893
   176
        extra_config+=("--with-ppl=${CT_COMPLIBS_DIR}")
yann@1893
   177
        extra_config+=("--with-cloog=${CT_COMPLIBS_DIR}")
yann@2123
   178
    elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
yann@2123
   179
        extra_config+=("--with-ppl=no")
yann@2123
   180
        extra_config+=("--with-cloog=no")
yann@2014
   181
    fi
yann@2122
   182
    if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
yann@1920
   183
        extra_config+=("--with-libelf=${CT_COMPLIBS_DIR}")
yann@2123
   184
    elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
yann@2123
   185
        extra_config+=("--with-libelf=no")
yann@1920
   186
    fi
yann@1893
   187
titus@1972
   188
    if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
titus@1972
   189
        extra_config+=("--enable-target-optspace")
titus@1972
   190
    fi
titus@1972
   191
yann@1893
   192
    CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
yann@1892
   193
yann@850
   194
    # Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
yann@1041
   195
    CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
yann@850
   196
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
yann@1892
   197
    LDFLAGS="${core_LDFLAGS}"                       \
yann@850
   198
    CT_DoExecLog ALL                                \
yann@1389
   199
    "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure"  \
yann@1041
   200
        --build=${CT_BUILD}                         \
yann@850
   201
        --host=${CT_HOST}                           \
yann@850
   202
        --target=${CT_TARGET}                       \
yann@850
   203
        --prefix="${core_prefix_dir}"               \
yann@850
   204
        --with-local-prefix="${CT_SYSROOT_DIR}"     \
yann@850
   205
        --disable-multilib                          \
yann@2043
   206
        --disable-libmudflap                        \
yann@850
   207
        ${CC_CORE_SYSROOT_ARG}                      \
yann@1479
   208
        "${extra_config[@]}"                        \
yann@850
   209
        --disable-nls                               \
yann@850
   210
        --enable-symvers=gnu                        \
yann@1107
   211
        --enable-languages="${lang_opt}"            \
yann@850
   212
        ${CT_CC_CORE_EXTRA_CONFIG}
yann@850
   213
yann@850
   214
    if [ "${build_libgcc}" = "yes" ]; then
yann@850
   215
        # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
yann@850
   216
        # gcc/config/t-libunwind so -lc is removed from the link for
yann@850
   217
        # libgcc_s.so, as we do not have a target -lc yet.
yann@850
   218
        # This is not as ugly as it appears to be ;-) All symbols get resolved
yann@850
   219
        # during the glibc build, and we provide a proper libgcc_s.so for the
yann@850
   220
        # cross toolchain during the final gcc build.
yann@850
   221
        #
yann@850
   222
        # As we cannot modify the source tree, nor override SHLIB_LC itself
yann@850
   223
        # during configure or make, we have to edit the resultant
yann@850
   224
        # gcc/libgcc.mk itself to remove -lc from the link.
yann@850
   225
        # This causes us to have to jump through some hoops...
yann@850
   226
        #
yann@850
   227
        # To produce libgcc.mk to edit we firstly require libiberty.a,
yann@850
   228
        # so we configure then build it.
yann@850
   229
        # Next we have to configure gcc, create libgcc.mk then edit it...
yann@850
   230
        # So much easier if we just edit the source tree, but hey...
yann@1389
   231
        if [ ! -f "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/gcc/BASE-VER" ]; then
yann@850
   232
            CT_DoExecLog ALL make configure-libiberty
yann@850
   233
            CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libiberty libiberty.a
yann@850
   234
            CT_DoExecLog ALL make configure-gcc configure-libcpp
yann@850
   235
            CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp
yann@850
   236
        else
yann@850
   237
            CT_DoExecLog ALL make configure-gcc configure-libcpp configure-build-libiberty
yann@850
   238
            CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp all-build-libiberty
yann@850
   239
        fi
yann@850
   240
        # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
yann@1389
   241
        if [ -d "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/libdecnumber" ]; then
yann@850
   242
            CT_DoExecLog ALL make configure-libdecnumber
yann@850
   243
            CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libdecnumber libdecnumber.a
yann@850
   244
        fi
yann@850
   245
yann@850
   246
        # Starting with GCC 4.3, libgcc.mk is no longer built,
yann@850
   247
        # and libgcc.mvars is used instead.
yann@850
   248
yann@892
   249
        if [ "${CT_CC_GCC_4_3_or_later}" = "y" ]; then
yann@850
   250
            libgcc_rule="libgcc.mvars"
yann@1981
   251
            core_targets=( gcc target-libgcc )
yann@850
   252
        else
yann@850
   253
            libgcc_rule="libgcc.mk"
yann@1981
   254
            core_targets=( gcc )
yann@850
   255
        fi
yann@850
   256
linux@1926
   257
        # On bare metal and canadian build the host-compiler is used when
linux@1926
   258
        # actually the build-system compiler is required. Choose the correct
linux@1926
   259
        # compilers for canadian build and use the defaults on other
linux@1926
   260
        # configurations.
linux@1926
   261
        if [ "${CT_BARE_METAL},${CT_CANADIAN}" = "y,y" ]; then
linux@1926
   262
            repair_cc="CC_FOR_BUILD=${CT_BUILD}-gcc \
linux@1926
   263
                       GCC_FOR_TARGET=${CT_TARGET}-gcc"
linux@1926
   264
        else
linux@1926
   265
            repair_cc=""
linux@1926
   266
        fi
linux@1926
   267
linux@1926
   268
        CT_DoExecLog ALL make ${PARALLELMFLAGS} -C gcc ${libgcc_rule} \
linux@1926
   269
                              ${repair_cc}
yann@850
   270
        sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}
yann@850
   271
    else # build_libgcc
yann@1981
   272
        core_targets=( gcc )
yann@850
   273
    fi   # ! build libgcc
yann@1983
   274
    if [    "${build_libstdcxx}" = "yes"    \
yann@1983
   275
         -a "${CT_CC_LANG_CXX}"  = "y"      \
yann@1983
   276
       ]; then
yann@1983
   277
        core_targets+=( target-libstdc++-v3 )
yann@1983
   278
    fi
yann@850
   279
yann@850
   280
    CT_DoLog EXTRA "Building ${mode} core C compiler"
yann@1981
   281
    CT_DoExecLog ALL make ${PARALLELMFLAGS} "${core_targets[@]/#/all-}"
yann@850
   282
yann@850
   283
    CT_DoLog EXTRA "Installing ${mode} core C compiler"
yann@1981
   284
    CT_DoExecLog ALL make "${core_targets[@]/#/install-}"
yann@850
   285
yann@1269
   286
    # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
yann@1269
   287
    # to call the C compiler with the same, somewhat canonical name.
linux@1924
   288
    # check whether compiler has an extension
linux@1924
   289
    file="$( ls -1 "${core_prefix_dir}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
linux@1924
   290
    [ -z "${file}" ] || ext=".${file##*.}"
linux@1924
   291
    CT_DoExecLog ALL ln -sv "${CT_TARGET}-gcc${ext}" "${core_prefix_dir}/bin/${CT_TARGET}-cc${ext}"
yann@1269
   292
yann@850
   293
    CT_EndStep
yann@850
   294
}
yann@850
   295
yann@850
   296
#------------------------------------------------------------------------------
yann@850
   297
# Build final gcc
yann@850
   298
do_cc() {
yann@1479
   299
    local -a extra_config
yann@1479
   300
    local tmp
yann@1892
   301
    local final_LDFLAGS
yann@1479
   302
yann@850
   303
    # If building for bare metal, nothing to be done here, the static core conpiler is enough!
yann@850
   304
    [ "${CT_BARE_METAL}" = "y" ] && return 0
yann@850
   305
yann@850
   306
    CT_DoStep INFO "Installing final compiler"
yann@850
   307
yann@850
   308
    mkdir -p "${CT_BUILD_DIR}/build-cc"
yann@850
   309
    cd "${CT_BUILD_DIR}/build-cc"
yann@850
   310
yann@850
   311
    CT_DoLog EXTRA "Configuring final compiler"
yann@850
   312
yann@850
   313
    # Enable selected languages
yann@850
   314
    lang_opt="c"
yann@850
   315
    [ "${CT_CC_LANG_CXX}" = "y"      ] && lang_opt="${lang_opt},c++"
yann@850
   316
    [ "${CT_CC_LANG_FORTRAN}" = "y"  ] && lang_opt="${lang_opt},fortran"
yann@850
   317
    [ "${CT_CC_LANG_ADA}" = "y"      ] && lang_opt="${lang_opt},ada"
yann@850
   318
    [ "${CT_CC_LANG_JAVA}" = "y"     ] && lang_opt="${lang_opt},java"
yann@850
   319
    [ "${CT_CC_LANG_OBJC}" = "y"     ] && lang_opt="${lang_opt},objc"
yann@850
   320
    [ "${CT_CC_LANG_OBJCXX}" = "y"   ] && lang_opt="${lang_opt},obj-c++"
yann@850
   321
    CT_Test "Building ADA language is not yet supported. Will try..." "${CT_CC_LANG_ADA}" = "y"
yann@850
   322
    CT_Test "Building Objective-C language is not yet supported. Will try..." "${CT_CC_LANG_OBJC}" = "y"
yann@850
   323
    CT_Test "Building Objective-C++ language is not yet supported. Will try..." "${CT_CC_LANG_OBJCXX}" = "y"
yann@850
   324
    CT_Test "Building ${CT_CC_LANG_OTHERS//,/ } language(s) is not yet supported. Will try..." -n "${CT_CC_LANG_OTHERS}"
yann@850
   325
    lang_opt=$(echo "${lang_opt},${CT_CC_LANG_OTHERS}" |sed -r -e 's/,+/,/g; s/,*$//;')
yann@850
   326
yann@1479
   327
    extra_config+=("--enable-languages=${lang_opt}")
yann@1479
   328
    extra_config+=("--disable-multilib")
yann@1479
   329
    for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
yann@1479
   330
        eval tmp="\${CT_ARCH_WITH_${tmp}}"
yann@1479
   331
        if [ -n "${tmp}" ]; then
yann@1479
   332
            extra_config+=("${tmp}")
yann@1479
   333
        fi
yann@1479
   334
    done
yann@1479
   335
yann@1479
   336
    [ "${CT_SHARED_LIBS}" = "y" ]                   || extra_config+=("--disable-shared")
yann@1479
   337
    [ -n "${CT_CC_PKGVERSION}" ]                    && extra_config+=("--with-pkgversion=${CT_CC_PKGVERSION}")
yann@1479
   338
    [ -n "${CT_CC_BUGURL}" ]                        && extra_config+=("--with-bugurl=${CT_CC_BUGURL}")
yann@2042
   339
    case "${CT_CC_GCC_SJLJ_EXCEPTIONS}" in
yann@2042
   340
        y)  extra_config+=("--enable-sjlj-exceptions");;
yann@2042
   341
        m)  ;;
yann@2042
   342
        "") extra_config+=("--disable-sjlj-exceptions");;
yann@2042
   343
    esac
yann@850
   344
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
yann@1479
   345
        extra_config+=("--enable-__cxa_atexit")
yann@850
   346
    else
yann@1479
   347
        extra_config+=("--disable-__cxa_atexit")
yann@850
   348
    fi
yann@1484
   349
    if [ -n "${CC_ENABLE_CXX_FLAGS}" ]; then
yann@1484
   350
        extra_config+=("--enable-cxx-flags=${CC_ENABLE_CXX_FLAGS}")
yann@1484
   351
    fi
yann@2043
   352
    if [ "${CT_CC_GCC_LIBMUDFLAP}" = "y" ]; then
yann@2043
   353
        extra_config+=(--enable-libmudflap)
yann@2043
   354
    else
yann@2043
   355
        extra_config+=(--disable-libmudflap)
yann@2043
   356
    fi
yann@1893
   357
js@2045
   358
    if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
js@2045
   359
        # this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
js@2045
   360
        # build script
js@2045
   361
        # FIXME: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
js@2045
   362
        # see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
js@2045
   363
        extra_config+=("--with-host-libstdcxx=-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm")
js@2045
   364
    elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
js@2045
   365
        # When companion libraries are build static (eg !shared),
js@2045
   366
        # the libstdc++ is not pulled automatically, although it
js@2045
   367
        # is needed. Shoe-horn it in our LDFLAGS
dwatkins@2070
   368
        # Ditto libm on some Fedora boxen
dwatkins@2070
   369
        final_LDFLAGS='-lstdc++ -lm'
yann@1893
   370
    fi
lacombar@1880
   371
    if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
yann@1893
   372
        extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
yann@1893
   373
        extra_config+=("--with-mpfr=${CT_COMPLIBS_DIR}")
yann@1848
   374
    fi
yann@2122
   375
    if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
yann@2122
   376
        extra_config+=("--with-mpc=${CT_COMPLIBS_DIR}")
yann@2122
   377
    fi
yann@2122
   378
    if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
yann@1893
   379
        extra_config+=("--with-ppl=${CT_COMPLIBS_DIR}")
yann@1893
   380
        extra_config+=("--with-cloog=${CT_COMPLIBS_DIR}")
yann@2123
   381
    elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
yann@2123
   382
        extra_config+=("--with-ppl=no")
yann@2123
   383
        extra_config+=("--with-cloog=no")
yann@2014
   384
    fi
yann@2122
   385
    if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
yann@1920
   386
        extra_config+=("--with-libelf=${CT_COMPLIBS_DIR}")
yann@2123
   387
    elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
yann@2123
   388
        extra_config+=("--with-libelf=no")
yann@1920
   389
    fi
yann@850
   390
lacombar@1881
   391
    if [ "${CT_THREADS}" = "none" ]; then
lacombar@1881
   392
        extra_config+=("--disable-threads")
lacombar@1881
   393
        if [ "${CT_CC_GCC_4_2_or_later}" = y ]; then
lacombar@1881
   394
            extra_config+=("--disable-libgomp")
lacombar@1881
   395
        fi
lacombar@1881
   396
    else
bartvdrmeulen@2017
   397
        if [ "${CT_THREADS}" = "win32" ]; then
bartvdrmeulen@2017
   398
            extra_config+=("--enable-threads=win32")
bartvdrmeulen@2017
   399
            extra_config+=("--disable-win32-registry")
bartvdrmeulen@2017
   400
        else
bartvdrmeulen@2017
   401
            extra_config+=("--enable-threads=posix")
bartvdrmeulen@2017
   402
        fi
lacombar@1881
   403
    fi
lacombar@1881
   404
titus@1972
   405
    if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
titus@1972
   406
        extra_config+=("--enable-target-optspace")
titus@1972
   407
    fi
yann@1991
   408
    if [ "${CT_CC_GCC_DISABLE_PCH}" = "y" ]; then
yann@1991
   409
        extra_config+=("--disable-libstdcxx-pch")
yann@1991
   410
    fi
titus@1972
   411
yann@1479
   412
    CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
yann@850
   413
yann@850
   414
    # --enable-symvers=gnu really only needed for sh4 to work around a
yann@850
   415
    # detection problem only matters for gcc-3.2.x and later, I think.
yann@850
   416
    # --disable-nls to work around crash bug on ppc405, but also because
yann@850
   417
    # embedded systems don't really need message catalogs...
yann@1122
   418
    CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
yann@1122
   419
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
yann@1892
   420
    LDFLAGS="${final_LDFLAGS}"                      \
yann@1122
   421
    CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"         \
yann@1122
   422
    CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"       \
yann@1122
   423
    LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}"       \
yann@1122
   424
    CT_DoExecLog ALL                                \
yann@1389
   425
    "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure"  \
yann@1122
   426
        --build=${CT_BUILD}                         \
yann@1122
   427
        --host=${CT_HOST}                           \
yann@1122
   428
        --target=${CT_TARGET}                       \
yann@1122
   429
        --prefix="${CT_PREFIX_DIR}"                 \
yann@1122
   430
        ${CC_SYSROOT_ARG}                           \
yann@1479
   431
        "${extra_config[@]}"                        \
yann@1122
   432
        --with-local-prefix="${CT_SYSROOT_DIR}"     \
yann@1122
   433
        --disable-nls                               \
yann@1122
   434
        --enable-symvers=gnu                        \
yann@1122
   435
        --enable-c99                                \
yann@1122
   436
        --enable-long-long                          \
yann@850
   437
        ${CT_CC_EXTRA_CONFIG}
yann@850
   438
yann@850
   439
    if [ "${CT_CANADIAN}" = "y" ]; then
yann@850
   440
        CT_DoLog EXTRA "Building libiberty"
yann@850
   441
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
yann@850
   442
    fi
yann@850
   443
yann@850
   444
    CT_DoLog EXTRA "Building final compiler"
yann@850
   445
    CT_DoExecLog ALL make ${PARALLELMFLAGS} all
yann@850
   446
yann@850
   447
    CT_DoLog EXTRA "Installing final compiler"
yann@850
   448
    CT_DoExecLog ALL make install
yann@850
   449
yann@850
   450
    # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
yann@850
   451
    # to call the C compiler with the same, somewhat canonical name.
linux@1924
   452
    # check whether compiler has an extension
bartvdrmeulen@2031
   453
    file="$( ls -1 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
linux@1924
   454
    [ -z "${file}" ] || ext=".${file##*.}"
linux@1924
   455
    CT_DoExecLog ALL ln -sv "${CT_TARGET}-gcc${ext}" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc${ext}"
yann@850
   456
yann@850
   457
    CT_EndStep
yann@850
   458
}