mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
488b27f58b
The referenced commit replaced 'make' with '${make}' everywhere. This is wrong for at least the utilities that we may build as companion tools (make, libtool): this will always invoke the version detected by configure by supplying the absolute path. In other words, the wrappers in .build/tools/bin are not fallbacks - they are either temporary (in case a respective companion tool is built) or permanent redirectors. This is the reason why the PATH= has .build/*/buildtools/bin at higher precedence than .build/tools/bin; the latter has the versions detected by configure and the former has the versions built as companion tools. Revert the rest of the gang (grep/sed/...) for consistency. After all, we may decide to supply some of them as well (awk, for instance). Signed-off-by: Alexey Neyman <stilor@att.net>
31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# This file adds the functions to build the GCC test suite
|
|
# Copyright 2010 DoréDevelopment
|
|
# Created by Martin Lund <mgl@doredevelopment.dk>
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
do_test_suite_gcc_get() { :; }
|
|
do_test_suite_gcc_extract() { :; }
|
|
do_test_suite_gcc_build() { :; }
|
|
|
|
# Overide functions depending on configuration
|
|
if [ "${CT_TEST_SUITE_GCC}" = "y" ]; then
|
|
|
|
do_test_suite_gcc_build() {
|
|
|
|
CT_DoStep INFO "Installing GCC test suite"
|
|
|
|
CT_DoExecLog ALL mkdir -p "${CT_TEST_SUITE_DIR}/gcc"
|
|
CT_DoExecLog ALL cp -av "${CT_LIB_DIR}/contrib/gcc-test-suite/default.cfg" \
|
|
"${CT_LIB_DIR}/contrib/gcc-test-suite/Makefile" \
|
|
"${CT_LIB_DIR}/contrib/gcc-test-suite/README" \
|
|
"${CT_SRC_DIR}/gcc-${CT_CC_GCC_VERSION}/gcc/testsuite" \
|
|
"${CT_TEST_SUITE_DIR}/gcc"
|
|
|
|
CT_DoExecLog ALL sed -i -r -e "s/@@DG_TARGET@@/${CT_TARGET}/g;" \
|
|
"${CT_TEST_SUITE_DIR}/gcc/Makefile"
|
|
|
|
CT_EndStep
|
|
}
|
|
|
|
fi # CT_TEST_SUITE_GCC
|