summaryrefslogtreecommitdiff
path: root/scripts/build/cc_gcc.sh
blob: 7a70d0da8fb59c9838acbbced4d91db064e77874 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
# This file adds the function to build the gcc C compiler
# Copyright 2007 Yann E. MORIN
# Licensed under the GPL v2. See COPYING in the root of this package

do_print_filename() {
    [ "${CT_CC}" = "gcc" ] || return 0
    echo "gcc-${CT_CC_VERSION}"
}

# Download gcc
do_cc_get() {
    # Ah! gcc folks are kind of 'different': they store the tarballs in
    # subdirectories of the same name! That's because gcc is such /crap/ that
    # it is such /big/ that it needs being splitted for distribution! Sad. :-(
    # Arrgghh! Some of those versions does not follow this convention:
    # gcc-3.3.3 lives in releases/gcc-3.3.3, while gcc-2.95.* isn't in a
    # subdirectory! You bastard!
    CT_GetFile "${CT_CC_FILE}"  \
               {ftp,http}://ftp.gnu.org/gnu/gcc{,{,/releases}/${CT_CC_FILE}}
}

# Extract gcc
do_cc_extract() {
    CT_ExtractAndPatch "${CT_CC_FILE}"
}

#------------------------------------------------------------------------------
# Core gcc pass 1
do_cc_core_pass_1() {
    # In case we're NPTL, build the static core gcc;
    # in any other case, do nothing.
    case "${CT_THREADS}" in
        nptl)   do_cc_core_static;;
    esac
}

# Core gcc pass 2
do_cc_core_pass_2() {
    # In case we're NPTL, build the shared core gcc,
    # in any other case, build the static core gcc.
    case "${CT_THREADS}" in
        nptl)   do_cc_core_shared;;
        *)      do_cc_core_static;;
    esac
}

#------------------------------------------------------------------------------
# Build static core gcc
do_cc_core_static() {
    mkdir -p "${CT_BUILD_DIR}/build-cc-core-static"
    cd "${CT_BUILD_DIR}/build-cc-core-static"

    CT_DoStep INFO "Installing static core C compiler"

    CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
    mkdir -p "${CT_CC_CORE_STATIC_PREFIX_DIR}/${CT_TARGET}/include"
    cp -r "${CT_HEADERS_DIR}"/* "${CT_CC_CORE_STATIC_PREFIX_DIR}/${CT_TARGET}/include" 2>&1 |CT_DoLog DEBUG

    CT_DoLog EXTRA "Configuring static core C compiler"

    extra_config="${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
    [ "${CT_GMP_MPFR}" = "y" ] && extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
        extra_config="${extra_config} --enable-__cxa_atexit"
    else
        extra_config="${extra_config} --disable-__cxa_atexit"
    fi

    CT_DoLog DEBUG "Extra config passed: '${extra_config}'"

    # Use --with-local-prefix so older gccs don't look in /usr/local (http://gcc.gnu.org/PR10532)
    CC_FOR_BUILD="${CT_CC_NATIVE}"                  \
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
    CT_DoExecLog ALL                                \
    "${CT_SRC_DIR}/${CT_CC_FILE}/configure"         \
        ${CT_CANADIAN_OPT}                          \
        --host=${CT_HOST}                           \
        --target=${CT_TARGET}                       \
        --prefix="${CT_CC_CORE_STATIC_PREFIX_DIR}"  \
        --with-local-prefix="${CT_SYSROOT_DIR}"     \
        --disable-multilib                          \
        --with-newlib                               \
        ${CC_CORE_SYSROOT_ARG}                      \
        ${extra_config}                             \
        --disable-nls                               \
        --enable-threads=no                         \
        --enable-symvers=gnu                        \
        --enable-languages=c                        \
        --disable-shared                            \
        --enable-target-optspace                    \
        ${CT_CC_CORE_EXTRA_CONFIG}

    # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
    # gcc/config/t-libunwind so -lc is removed from the link for
    # libgcc_s.so, as we do not have a target -lc yet.
    # This is not as ugly as it appears to be ;-) All symbols get resolved
    # during the glibc build, and we provide a proper libgcc_s.so for the
    # cross toolchain during the final gcc build.
    #
    # As we cannot modify the source tree, nor override SHLIB_LC itself
    # during configure or make, we have to edit the resultant
    # gcc/libgcc.mk itself to remove -lc from the link.
    # This causes us to have to jump through some hoops...
    #
    # To produce libgcc.mk to edit we firstly require libiberty.a,
    # so we configure then build it.
    # Next we have to configure gcc, create libgcc.mk then edit it...
    # So much easier if we just edit the source tree, but hey...
    if [ ! -f "${CT_SRC_DIR}/${CT_CC_FILE}/gcc/BASE-VER" ]; then
        CT_DoExecLog ALL make configure-libiberty
        CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libiberty libiberty.a
        CT_DoExecLog ALL make configure-gcc configure-libcpp
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp
    else
        CT_DoExecLog ALL make configure-gcc configure-libcpp configure-build-libiberty
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp all-build-libiberty
    fi
    # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
    if [ -d "${CT_SRC_DIR}/${CT_CC_FILE}/libdecnumber" ]; then
        CT_DoExecLog ALL make configure-libdecnumber
        CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libdecnumber libdecnumber.a
    fi

    # Starting with GCC 4.3, libgcc.mk is no longer built,
    # and libgcc.mvars is used instead.

    gcc_version_major=$(echo ${CT_CC_VERSION} |sed -r -e 's/^([^\.]+)\..*/\1/')
    gcc_version_minor=$(echo ${CT_CC_VERSION} |sed -r -e 's/^[^\.]+\.([^.]+).*/\1/')

    if [    ${gcc_version_major} -eq 4 -a ${gcc_version_minor} -ge 3    \
         -o ${gcc_version_major} -gt 4                                  ]; then
        libgcc_rule="libgcc.mvars"
        build_rules="all-gcc all-target-libgcc"
        install_rules="install-gcc install-target-libgcc"
    else
        libgcc_rule="libgcc.mk"
        build_rules="all-gcc"
        install_rules="install-gcc"
    fi

    CT_DoExecLog ALL make ${PARALLELMFLAGS} -C gcc ${libgcc_rule}
    sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}

    if [ "${CT_CANADIAN}" = "y" ]; then
        CT_DoLog EXTRA "Building libiberty"
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
    fi

    CT_DoLog EXTRA "Building static core C compiler"
    CT_DoExecLog ALL make ${PARALLELMFLAGS} ${build_rules}

    CT_DoLog EXTRA "Installing static core C compiler"
    CT_DoExecLog ALL make ${install_rules}

    CT_EndStep
}

#------------------------------------------------------------------------------
# Build shared core gcc
do_cc_core_shared() {
    mkdir -p "${CT_BUILD_DIR}/build-cc-core-shared"
    cd "${CT_BUILD_DIR}/build-cc-core-shared"

    CT_DoStep INFO "Installing shared core C compiler"

    CT_DoLog DEBUG "Copying headers to install area of bootstrap gcc, so it can build libgcc2"
    mkdir -p "${CT_CC_CORE_SHARED_PREFIX_DIR}/${CT_TARGET}/include"
    cp -r "${CT_HEADERS_DIR}"/* "${CT_CC_CORE_SHARED_PREFIX_DIR}/${CT_TARGET}/include" 2>&1 |CT_DoLog DEBUG

    CT_DoLog EXTRA "Configuring shared core C compiler"

    extra_config="${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
    [ "${CT_GMP_MPFR}" = "y" ] && extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
        extra_config="${extra_config} --enable-__cxa_atexit"
    else
        extra_config="${extra_config} --disable-__cxa_atexit"
    fi

    CT_DoLog DEBUG "Extra config passed: '${extra_config}'"

    CC_FOR_BUILD="${CT_CC_NATIVE}"                  \
    CFLAGS="${CT_CFLAGS_FOR_HOST}"                  \
    CT_DoExecLog ALL                                \
    "${CT_SRC_DIR}/${CT_CC_FILE}/configure"         \
        ${CT_CANADIAN_OPT}                          \
        --target=${CT_TARGET}                       \
        --host=${CT_HOST}                           \
        --prefix="${CT_CC_CORE_SHARED_PREFIX_DIR}"  \
        --with-local-prefix="${CT_SYSROOT_DIR}"     \
        --disable-multilib                          \
        ${CC_CORE_SYSROOT_ARG}                      \
        ${extra_config}                             \
        --disable-nls                               \
        --enable-symvers=gnu                        \
        --enable-languages=c                        \
        --enable-shared                             \
        --enable-target-optspace                    \
        ${CT_CC_CORE_EXTRA_CONFIG}

    # HACK: we need to override SHLIB_LC from gcc/config/t-slibgcc-elf-ver or
    # gcc/config/t-libunwind so -lc is removed from the link for
    # libgcc_s.so, as we do not have a target -lc yet.
    # This is not as ugly as it appears to be ;-) All symbols get resolved
    # during the glibc build, and we provide a proper libgcc_s.so for the
    # cross toolchain during the final gcc build.
    #
    # As we cannot modify the source tree, nor override SHLIB_LC itself
    # during configure or make, we have to edit the resultant
    # gcc/libgcc.mk itself to remove -lc from the link.
    # This causes us to have to jump through some hoops...
    #
    # To produce libgcc.mk to edit we firstly require libiberty.a,
    # so we configure then build it.
    # Next we have to configure gcc, create libgcc.mk then edit it...
    # So much easier if we just edit the source tree, but hey...
    if [ ! -f "${CT_SRC_DIR}/${CT_CC_FILE}/gcc/BASE-VER" ]; then
        CT_DoExecLog ALL make configure-libiberty
        CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libiberty libiberty.a
        CT_DoExecLog ALL make configure-gcc configure-libcpp
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp
    else
        CT_DoExecLog ALL make configure-gcc configure-libcpp configure-build-libiberty
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-libcpp all-build-libiberty
    fi
    # HACK: gcc-4.2 uses libdecnumber to build libgcc.mk, so build it here.
    if [ -d "${CT_SRC_DIR}/${CT_CC_FILE}/libdecnumber" ]; then
        CT_DoExecLog ALL make configure-libdecnumber
        CT_DoExecLog ALL make ${PARALLELMFLAGS} -C libdecnumber libdecnumber.a
    fi

    # Starting with GCC 4.3, libgcc.mk is no longer built,
    # and libgcc.mvars is used instead.

    gcc_version_major=$(echo ${CT_CC_VERSION} |sed -r -e 's/^([^\.]+)\..*/\1/')
    gcc_version_minor=$(echo ${CT_CC_VERSION} |sed -r -e 's/^[^\.]+\.([^.]+).*/\1/')

    if [    ${gcc_version_major} -eq 4 -a ${gcc_version_minor} -ge 3    \
         -o ${gcc_version_major} -gt 4                                  ]; then
        libgcc_rule="libgcc.mvars"
        build_rules="all-gcc all-target-libgcc"
        install_rules="install-gcc install-target-libgcc"
    else
        libgcc_rule="libgcc.mk"
        build_rules="all-gcc"
        install_rules="install-gcc"
    fi

    CT_DoExecLog ALL make ${PARALLELMFLAGS} -C gcc ${libgcc_rule}
    sed -r -i -e 's@-lc@@g' gcc/${libgcc_rule}

    if [ "${CT_CANADIAN}" = "y" ]; then
        CT_DoLog EXTRA "Building libiberty"
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
    fi

    CT_DoLog EXTRA "Building shared core C compiler"
    CT_DoExecLog ALL make ${PARALLELMFLAGS} ${build_rules}

    CT_DoLog EXTRA "Installing shared core C compiler"
    CT_DoExecLog ALL make ${install_rules}

    CT_EndStep
}

#------------------------------------------------------------------------------
# Build final gcc
do_cc() {
    CT_DoStep INFO "Installing final compiler"

    mkdir -p "${CT_BUILD_DIR}/build-cc"
    cd "${CT_BUILD_DIR}/build-cc"

    CT_DoLog EXTRA "Configuring final compiler"

    # Enable selected languages
    lang_opt="c"
    [ "${CT_CC_LANG_CXX}" = "y"      ] && lang_opt="${lang_opt},c++"
    [ "${CT_CC_LANG_FORTRAN}" = "y"  ] && lang_opt="${lang_opt},fortran"
    [ "${CT_CC_LANG_ADA}" = "y"      ] && lang_opt="${lang_opt},ada"
    [ "${CT_CC_LANG_JAVA}" = "y"     ] && lang_opt="${lang_opt},java"
    [ "${CT_CC_LANG_OBJC}" = "y"     ] && lang_opt="${lang_opt},objc"
    [ "${CT_CC_LANG_OBJCXX}" = "y"   ] && lang_opt="${lang_opt},obj-c++"
    CT_Test "Building ADA language is not yet supported. Will try..." "${CT_CC_LANG_ADA}" = "y"
    CT_Test "Building Objective-C language is not yet supported. Will try..." "${CT_CC_LANG_OBJC}" = "y"
    CT_Test "Building Objective-C++ language is not yet supported. Will try..." "${CT_CC_LANG_OBJCXX}" = "y"
    CT_Test "Building ${CT_CC_LANG_OTHERS//,/ } language(s) is not yet supported. Will try..." -n "${CT_CC_LANG_OTHERS}"
    lang_opt=$(echo "${lang_opt},${CT_CC_LANG_OTHERS}" |sed -r -e 's/,+/,/g; s/,*$//;')

    extra_config="--enable-languages=${lang_opt}"
    extra_config="${extra_config} --disable-multilib"
    extra_config="${extra_config} ${CT_ARCH_WITH_ARCH} ${CT_ARCH_WITH_ABI} ${CT_ARCH_WITH_CPU} ${CT_ARCH_WITH_TUNE} ${CT_ARCH_WITH_FPU} ${CT_ARCH_WITH_FLOAT}"
    [ "${CT_SHARED_LIBS}" = "y" ]     || extra_config="${extra_config} --disable-shared"
    [ "${CT_GMP_MPFR}" = "y" ] && extra_config="${extra_config} --with-gmp=${CT_PREFIX_DIR} --with-mpfr=${CT_PREFIX_DIR}"
    [ -n "${CT_CC_PKGVERSION}" ]      && extra_config="${extra_config} --with-pkgversion=${CT_CC_PKGVERSION}"
    [ -n "${CT_CC_BUGURL}" ]          && extra_config="${extra_config} --with-bugurl=${CT_CC_BUGURL}"
    if [ "${CT_CC_CXA_ATEXIT}" = "y" ]; then
        extra_config="${extra_config} --enable-__cxa_atexit"
    else
        extra_config="${extra_config} --disable-__cxa_atexit"
    fi

    CT_DoLog DEBUG "Extra config passed: '${extra_config}'"

    # --enable-symvers=gnu really only needed for sh4 to work around a
    # detection problem only matters for gcc-3.2.x and later, I think.
    # --disable-nls to work around crash bug on ppc405, but also because
    # embedded systems don't really need message catalogs...
    CC_FOR_BUILD="${CT_CC_NATIVE}"              \
    CFLAGS="${CT_CFLAGS_FOR_HOST}"              \
    CFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"     \
    CXXFLAGS_FOR_TARGET="${CT_TARGET_CFLAGS}"   \
    LDFLAGS_FOR_TARGET="${CT_TARGET_LDFLAGS}"   \
    CT_DoExecLog ALL                            \
    "${CT_SRC_DIR}/${CT_CC_FILE}/configure"     \
        ${CT_CANADIAN_OPT}                      \
        --target=${CT_TARGET} --host=${CT_HOST} \
        --prefix="${CT_PREFIX_DIR}"             \
        ${CC_SYSROOT_ARG}                       \
        ${extra_config}                         \
        --with-local-prefix="${CT_SYSROOT_DIR}" \
        --disable-nls                           \
        --enable-threads=posix                  \
        --enable-symvers=gnu                    \
        --enable-c99                            \
        --enable-long-long                      \
        --enable-target-optspace                \
        ${CT_CC_EXTRA_CONFIG}

    if [ "${CT_CANADIAN}" = "y" ]; then
        CT_DoLog EXTRA "Building libiberty"
        CT_DoExecLog ALL make ${PARALLELMFLAGS} all-build-libiberty
    fi

    CT_DoLog EXTRA "Building final compiler"
    CT_DoExecLog ALL make ${PARALLELMFLAGS} all

    CT_DoLog EXTRA "Installing final compiler"
    CT_DoExecLog ALL make install

    # Create a symlink ${CT_TARGET}-cc to ${CT_TARGET}-gcc to always be able
    # to call the C compiler with the same, somewhat canonical name.
    ln -sv "${CT_PREFIX_DIR}/bin/${CT_TARGET}"-{g,}cc 2>&1 |CT_DoLog ALL

    CT_EndStep
}