mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-19 04:47:52 +00:00
cc/gcc: build core compilers for canadian
Currently, we rely on an existing external cross-compiler targetting the target, to build the C library. This can pause quite a few problems if that compiler is different from the one we are building, because it could introduce some ABI issues. This patch removes this dependency, by building the core compilers as we do for standard cross, and also by building the binutils and gcc, for running on the build machine. This means we no longer need to offer the cross-sompiler selection in the menuconfig. Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
This commit is contained in:
parent
b485733f26
commit
d776140189
@ -303,55 +303,6 @@ config HOST_SUFFIX
|
|||||||
|
|
||||||
endif # CANADIAN
|
endif # CANADIAN
|
||||||
|
|
||||||
if CROSS_NATIVE || CANADIAN
|
|
||||||
|
|
||||||
comment "Target system"
|
|
||||||
|
|
||||||
config TARGET_PREFIX
|
|
||||||
string
|
|
||||||
prompt "| Tools prefix (READ HELP!)"
|
|
||||||
default ""
|
|
||||||
help
|
|
||||||
If you have your *target system* tools in a weird location, and/or
|
|
||||||
they have an unusual prefix, enter it here.
|
|
||||||
|
|
||||||
Usually, you should leave that empty!
|
|
||||||
|
|
||||||
Eg.:
|
|
||||||
If your *target* gcc is /opt/target-tools/bin/weird-gcc then you
|
|
||||||
should enter:
|
|
||||||
/opt/target-tools/bin/weird-
|
|
||||||
|
|
||||||
If your *target* gcc is /opt/target-tools/bin/weird-gcc and
|
|
||||||
/opt/target-tools/bin is in your PATH, you should enter:
|
|
||||||
weird-
|
|
||||||
|
|
||||||
If your *target* gcc is /opt/target-tools/bin/gcc then you
|
|
||||||
should enter (do not forget to add the trailing '/'):
|
|
||||||
/opt/target-tools/bin/
|
|
||||||
|
|
||||||
config TARGET_SUFFIX
|
|
||||||
string
|
|
||||||
prompt "| Tools suffix (READ HELP!)"
|
|
||||||
default ""
|
|
||||||
help
|
|
||||||
If your *target system* tools have an unusual suffix, enter it
|
|
||||||
here.
|
|
||||||
|
|
||||||
Usually, you should leave that empty!
|
|
||||||
|
|
||||||
Eg.:
|
|
||||||
If your 'default' gcc is gcc 4.3.1, but you also have gcc-3.4.2
|
|
||||||
installed as gcc-3.4, then you should enter:
|
|
||||||
-3.4
|
|
||||||
|
|
||||||
It can happen that some of the tools have a suffix, when others
|
|
||||||
don't, eg. you can have 'gcc-3.4' and 'ar'. crosstool-NG accounts
|
|
||||||
for that by checking the tools without the suffix in case it can
|
|
||||||
not find some of the tool.
|
|
||||||
|
|
||||||
endif # CROSS_NATIVE || CANADIAN
|
|
||||||
|
|
||||||
comment "Misc options"
|
comment "Misc options"
|
||||||
|
|
||||||
config TOOLCHAIN_ENABLE_NLS
|
config TOOLCHAIN_ENABLE_NLS
|
||||||
|
@ -76,13 +76,10 @@ do_cc_core_pass_1() {
|
|||||||
local -a core_opts
|
local -a core_opts
|
||||||
local do_core
|
local do_core
|
||||||
|
|
||||||
# Do nothing for canadian-crosses, we already have a target compiler.
|
|
||||||
# We only need a pass-1 core gcc if the threading model is NPTL.
|
# We only need a pass-1 core gcc if the threading model is NPTL.
|
||||||
# For all other cases, it is not used.
|
# For all other cases, it is not used.
|
||||||
case "${CT_CANADIAN},${CT_THREADS}" in
|
case "${CT_THREADS}" in
|
||||||
y,*)
|
nptl)
|
||||||
;;
|
|
||||||
,nptl)
|
|
||||||
do_core=y
|
do_core=y
|
||||||
core_opts+=( "mode=static" )
|
core_opts+=( "mode=static" )
|
||||||
core_opts+=( "host=${CT_BUILD}" )
|
core_opts+=( "host=${CT_BUILD}" )
|
||||||
@ -116,21 +113,18 @@ do_cc_core_pass_2() {
|
|||||||
core_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
core_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
||||||
core_opts+=( "lang_list=c" )
|
core_opts+=( "lang_list=c" )
|
||||||
|
|
||||||
# Do nothing for canadian-crosses, we already have a target compiler.
|
|
||||||
# Different conditions are at stake here:
|
# Different conditions are at stake here:
|
||||||
# - In case the threading model is NPTL, we need a shared-capable core
|
# - In case the threading model is NPTL, we need a shared-capable core
|
||||||
# gcc; in all other cases, we need a static-only core gcc.
|
# gcc; in all other cases, we need a static-only core gcc.
|
||||||
# - In case the threading model is NPTL or win32, or gcc is 4.3 or
|
# - In case the threading model is NPTL or win32, or gcc is 4.3 or
|
||||||
# later, we need to build libgcc
|
# later, we need to build libgcc
|
||||||
case "${CT_CANADIAN},${CT_THREADS}" in
|
case "${CT_THREADS}" in
|
||||||
y,*)
|
nptl)
|
||||||
;;
|
|
||||||
,nptl)
|
|
||||||
do_core=y
|
do_core=y
|
||||||
core_opts+=( "mode=shared" )
|
core_opts+=( "mode=shared" )
|
||||||
core_opts+=( "build_libgcc=yes" )
|
core_opts+=( "build_libgcc=yes" )
|
||||||
;;
|
;;
|
||||||
,win32)
|
win32)
|
||||||
do_core=y
|
do_core=y
|
||||||
core_opts+=( "mode=static" )
|
core_opts+=( "mode=static" )
|
||||||
core_opts+=( "build_libgcc=yes" )
|
core_opts+=( "build_libgcc=yes" )
|
||||||
|
@ -354,7 +354,7 @@ if [ -z "${CT_RESTART}" ]; then
|
|||||||
build_mangle="build_"
|
build_mangle="build_"
|
||||||
host_mangle="host_"
|
host_mangle="host_"
|
||||||
target_mangle=""
|
target_mangle=""
|
||||||
install_build_tools_for="BUILD HOST TARGET"
|
install_build_tools_for="BUILD HOST"
|
||||||
;;
|
;;
|
||||||
*) CT_Abort "No code for '${CT_TOOLCHAIN_TYPE}' toolchain type!"
|
*) CT_Abort "No code for '${CT_TOOLCHAIN_TYPE}' toolchain type!"
|
||||||
;;
|
;;
|
||||||
|
14
steps.mk
14
steps.mk
@ -14,9 +14,19 @@ help-env::
|
|||||||
# ----------------------------------------------------------
|
# ----------------------------------------------------------
|
||||||
# The steps list
|
# The steps list
|
||||||
|
|
||||||
|
# The _for_build steps are noop for native and cross,
|
||||||
|
# but are actual steps for canadian and cross-native.
|
||||||
# Please keep the last line with a '\' and keep the following empy line:
|
# Please keep the last line with a '\' and keep the following empy line:
|
||||||
# it helps when diffing and merging.
|
# it helps when diffing and merging.
|
||||||
CT_STEPS := libc_check_config \
|
CT_STEPS := libc_check_config \
|
||||||
|
gmp_for_build \
|
||||||
|
mpfr_for_build \
|
||||||
|
ppl_for_build \
|
||||||
|
cloog_for_build \
|
||||||
|
mpc_for_build \
|
||||||
|
libelf_for_build \
|
||||||
|
binutils_for_build \
|
||||||
|
elf2flt_for_build \
|
||||||
gmp_for_host \
|
gmp_for_host \
|
||||||
mpfr_for_host \
|
mpfr_for_host \
|
||||||
ppl_for_host \
|
ppl_for_host \
|
||||||
@ -31,6 +41,7 @@ CT_STEPS := libc_check_config \
|
|||||||
libc_start_files \
|
libc_start_files \
|
||||||
cc_core_pass_2 \
|
cc_core_pass_2 \
|
||||||
libc \
|
libc \
|
||||||
|
cc_for_build \
|
||||||
cc_for_host \
|
cc_for_host \
|
||||||
libc_finish \
|
libc_finish \
|
||||||
libelf_for_target \
|
libelf_for_target \
|
||||||
@ -39,6 +50,9 @@ CT_STEPS := libc_check_config \
|
|||||||
test_suite \
|
test_suite \
|
||||||
finish \
|
finish \
|
||||||
|
|
||||||
|
# Keep an empty line above this comment, so the last
|
||||||
|
# back-slash terminated line works as expected.
|
||||||
|
|
||||||
# Make the list available to sub-processes (scripts/crosstool-NG.sh needs it)
|
# Make the list available to sub-processes (scripts/crosstool-NG.sh needs it)
|
||||||
export CT_STEPS
|
export CT_STEPS
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user