scripts/build/cc/gcc.sh
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Oct 08 23:37:12 2010 +0200 (2010-10-08)
changeset 2141 a09246191120
parent 2123 ff2181adbd28
child 2142 17e9137b962e
child 2161 3c648212298e
permissions -rw-r--r--
cc/gcc: fix C++ headers location

In case we build the C++ compiler, we have to tell gcc where to put the C++
headers, or else it will try to # put it in prefix/tuple/include, which we
make a symlink to sysroot/usr/include during the build, and that we delete
(the symlink!) after the build, but gcc will not look in sysroot/usr/inlcude
for C++ headers by default.

Implements a fix suggested by: Bryan Hundven <bryanhundven@gmail.com>

Reported-by: Anthony Foiani <anthony.foiani@gmail.com>
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@2141
   327
    # In case we build the C++ compiler, we have to tell gcc where to put the
yann@2141
   328
    # C++ headers, or else it will try to put it in prefix/tuple/include,
yann@2141
   329
    # which we make a symlink to sysroot/usr/include during the build, and
yann@2141
   330
    # that we delete (the symlink!) after the build, but gcc will not look
yann@2141
   331
    # in sysroot/usr/inlcude for C++ headers by default
yann@2141
   332
    if [ "${CT_CC_LANG_CXX}" = "y"   ]; then
yann@2141
   333
        extra_config+=("--with-gxx-include-dir=${CT_SYSROOT_DIR}/usr/include")
yann@2141
   334
    fi
yann@2141
   335
yann@1479
   336
    extra_config+=("--enable-languages=${lang_opt}")
yann@1479
   337
    extra_config+=("--disable-multilib")
yann@1479
   338
    for tmp in ARCH ABI CPU TUNE FPU FLOAT; do
yann@1479
   339
        eval tmp="\${CT_ARCH_WITH_${tmp}}"
yann@1479
   340
        if [ -n "${tmp}" ]; then
yann@1479
   341
            extra_config+=("${tmp}")
yann@1479
   342
        fi
yann@1479
   343
    done
yann@1479
   344
yann@1479
   345
    [ "${CT_SHARED_LIBS}" = "y" ]                   || extra_config+=("--disable-shared")
yann@1479
   346
    [ -n "${CT_CC_PKGVERSION}" ]                    && extra_config+=("--with-pkgversion=${CT_CC_PKGVERSION}")
yann@1479
   347
    [ -n "${CT_CC_BUGURL}" ]                        && extra_config+=("--with-bugurl=${CT_CC_BUGURL}")
yann@2042
   348
    case "${CT_CC_GCC_SJLJ_EXCEPTIONS}" in
yann@2042
   349
        y)  extra_config+=("--enable-sjlj-exceptions");;
yann@2042
   350
        m)  ;;
yann@2042
   351
        "") extra_config+=("--disable-sjlj-exceptions");;
yann@2042
   352
    esac
yann@850
   353
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
yann@1479
   354
        extra_config+=("--enable-__cxa_atexit")
yann@850
   355
    else
yann@1479
   356
        extra_config+=("--disable-__cxa_atexit")
yann@850
   357
    fi
yann@1484
   358
    if [ -n "${CC_ENABLE_CXX_FLAGS}" ]; then
yann@1484
   359
        extra_config+=("--enable-cxx-flags=${CC_ENABLE_CXX_FLAGS}")
yann@1484
   360
    fi
yann@2043
   361
    if [ "${CT_CC_GCC_LIBMUDFLAP}" = "y" ]; then
yann@2043
   362
        extra_config+=(--enable-libmudflap)
yann@2043
   363
    else
yann@2043
   364
        extra_config+=(--disable-libmudflap)
yann@2043
   365
    fi
yann@1893
   366
js@2045
   367
    if [ "${CT_CC_STATIC_LIBSTDCXX}" = "y" ]; then
js@2045
   368
        # this is from CodeSourcery arm-2010q1-202-arm-none-linux-gnueabi.src.tar.bz2
js@2045
   369
        # build script
js@2045
   370
        # FIXME: if the host gcc is gcc-4.5 then presumably we could use -static-libstdc++,
js@2045
   371
        # see http://gcc.gnu.org/ml/gcc-patches/2009-06/msg01635.html
js@2045
   372
        extra_config+=("--with-host-libstdcxx=-static-libgcc -Wl,-Bstatic,-lstdc++,-Bdynamic -lm")
js@2045
   373
    elif [ "${CT_COMPLIBS_SHARED}" != "y" ]; then
js@2045
   374
        # When companion libraries are build static (eg !shared),
js@2045
   375
        # the libstdc++ is not pulled automatically, although it
js@2045
   376
        # is needed. Shoe-horn it in our LDFLAGS
dwatkins@2070
   377
        # Ditto libm on some Fedora boxen
dwatkins@2070
   378
        final_LDFLAGS='-lstdc++ -lm'
yann@1893
   379
    fi
lacombar@1880
   380
    if [ "${CT_CC_GCC_USE_GMP_MPFR}" = "y" ]; then
yann@1893
   381
        extra_config+=("--with-gmp=${CT_COMPLIBS_DIR}")
yann@1893
   382
        extra_config+=("--with-mpfr=${CT_COMPLIBS_DIR}")
yann@1848
   383
    fi
yann@2122
   384
    if [ "${CT_CC_GCC_USE_MPC}" = "y" ]; then
yann@2122
   385
        extra_config+=("--with-mpc=${CT_COMPLIBS_DIR}")
yann@2122
   386
    fi
yann@2122
   387
    if [ "${CT_CC_GCC_USE_GRAPHITE}" = "y" ]; then
yann@1893
   388
        extra_config+=("--with-ppl=${CT_COMPLIBS_DIR}")
yann@1893
   389
        extra_config+=("--with-cloog=${CT_COMPLIBS_DIR}")
yann@2123
   390
    elif [ "${CT_CC_GCC_HAS_GRAPHITE}" = "y" ]; then
yann@2123
   391
        extra_config+=("--with-ppl=no")
yann@2123
   392
        extra_config+=("--with-cloog=no")
yann@2014
   393
    fi
yann@2122
   394
    if [ "${CT_CC_GCC_USE_LTO}" = "y" ]; then
yann@1920
   395
        extra_config+=("--with-libelf=${CT_COMPLIBS_DIR}")
yann@2123
   396
    elif [ "${CT_CC_GCC_HAS_LTO}" = "y" ]; then
yann@2123
   397
        extra_config+=("--with-libelf=no")
yann@1920
   398
    fi
yann@850
   399
lacombar@1881
   400
    if [ "${CT_THREADS}" = "none" ]; then
lacombar@1881
   401
        extra_config+=("--disable-threads")
lacombar@1881
   402
        if [ "${CT_CC_GCC_4_2_or_later}" = y ]; then
lacombar@1881
   403
            extra_config+=("--disable-libgomp")
lacombar@1881
   404
        fi
lacombar@1881
   405
    else
bartvdrmeulen@2017
   406
        if [ "${CT_THREADS}" = "win32" ]; then
bartvdrmeulen@2017
   407
            extra_config+=("--enable-threads=win32")
bartvdrmeulen@2017
   408
            extra_config+=("--disable-win32-registry")
bartvdrmeulen@2017
   409
        else
bartvdrmeulen@2017
   410
            extra_config+=("--enable-threads=posix")
bartvdrmeulen@2017
   411
        fi
lacombar@1881
   412
    fi
lacombar@1881
   413
titus@1972
   414
    if [ "${CT_CC_GCC_ENABLE_TARGET_OPTSPACE}" = "y" ]; then
titus@1972
   415
        extra_config+=("--enable-target-optspace")
titus@1972
   416
    fi
yann@1991
   417
    if [ "${CT_CC_GCC_DISABLE_PCH}" = "y" ]; then
yann@1991
   418
        extra_config+=("--disable-libstdcxx-pch")
yann@1991
   419
    fi
titus@1972
   420
yann@1479
   421
    CT_DoLog DEBUG "Extra config passed: '${extra_config[*]}'"
yann@850
   422
yann@850
   423
    # --enable-symvers=gnu really only needed for sh4 to work around a
yann@850
   424
    # detection problem only matters for gcc-3.2.x and later, I think.
yann@850
   425
    # --disable-nls to work around crash bug on ppc405, but also because
yann@850
   426
    # embedded systems don't really need message catalogs...
yann@1122
   427
    CC_FOR_BUILD="${CT_BUILD}-gcc"                  \
yann@1122
   428
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
yann@1892
   429
    LDFLAGS="${final_LDFLAGS}"                      \
yann@1122
   430
    CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"         \
yann@1122
   431
    CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"       \
yann@1122
   432
    LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}"       \
yann@1122
   433
    CT_DoExecLog ALL                                \
yann@1389
   434
    "${CT_SRC_DIR}/gcc-${CT_CC_VERSION}/configure"  \
yann@1122
   435
        --build=${CT_BUILD}                         \
yann@1122
   436
        --host=${CT_HOST}                           \
yann@1122
   437
        --target=${CT_TARGET}                       \
yann@1122
   438
        --prefix="${CT_PREFIX_DIR}"                 \
yann@1122
   439
        ${CC_SYSROOT_ARG}                           \
yann@1479
   440
        "${extra_config[@]}"                        \
yann@1122
   441
        --with-local-prefix="${CT_SYSROOT_DIR}"     \
yann@1122
   442
        --disable-nls                               \
yann@1122
   443
        --enable-symvers=gnu                        \
yann@1122
   444
        --enable-c99                                \
yann@1122
   445
        --enable-long-long                          \
yann@850
   446
        ${CT_CC_EXTRA_CONFIG}
yann@850
   447
yann@850
   448
    if [ "${CT_CANADIAN}" = "y" ]; then
yann@850
   449
        CT_DoLog EXTRA "Building libiberty"
yann@850
   450
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
yann@850
   451
    fi
yann@850
   452
yann@850
   453
    CT_DoLog EXTRA "Building final compiler"
yann@850
   454
    CT_DoExecLog ALL make ${PARALLELMFLAGS} all
yann@850
   455
yann@850
   456
    CT_DoLog EXTRA "Installing final compiler"
yann@850
   457
    CT_DoExecLog ALL make install
yann@850
   458
yann@850
   459
    # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
yann@850
   460
    # to call the C compiler with the same, somewhat canonical name.
linux@1924
   461
    # check whether compiler has an extension
bartvdrmeulen@2031
   462
    file="$( ls -1 "${CT_PREFIX_DIR}/bin/${CT_TARGET}-gcc."* 2>/dev/null || true )"
linux@1924
   463
    [ -z "${file}" ] || ext=".${file##*.}"
linux@1924
   464
    CT_DoExecLog ALL ln -sv "${CT_TARGET}-gcc${ext}" "${CT_PREFIX_DIR}/bin/${CT_TARGET}-cc${ext}"
yann@850
   465
yann@850
   466
    CT_EndStep
yann@850
   467
}