mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2025-01-25 13:49:29 +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>
58 lines
1.4 KiB
Bash
58 lines
1.4 KiB
Bash
# This file adds functions to build the avr-libc C library
|
|
|
|
do_libc_get() {
|
|
local libc_src
|
|
|
|
libc_src="http://download.savannah.gnu.org/releases/avr-libc"
|
|
|
|
if [ "${CT_LIBC_AVR_LIBC_CUSTOM}" = "y" ]; then
|
|
CT_GetCustom "avr-libc" "${CT_LIBC_AVR_LIBC_CUSTOM_VERSION}" \
|
|
"${CT_LIBC_AVR_LIBC_CUSTOM_LOCATION}"
|
|
else # ! custom location
|
|
CT_GetFile "avr-libc-${CT_LIBC_VERSION}" "${libc_src}"
|
|
fi # ! custom location
|
|
}
|
|
|
|
do_libc_extract() {
|
|
CT_Extract "avr-libc-${CT_LIBC_VERSION}"
|
|
CT_Patch "avr-libc" "${CT_LIBC_VERSION}"
|
|
}
|
|
|
|
do_libc_configure() {
|
|
CT_DoLog EXTRA "Configuring C library"
|
|
|
|
CT_DoExecLog CFG \
|
|
./configure \
|
|
--build=${CT_BUILD} \
|
|
--host=${CT_TARGET} \
|
|
--prefix=${CT_PREFIX_DIR} \
|
|
"${CT_LIBC_AVR_LIBC_EXTRA_CONFIG_ARRAY[@]}"
|
|
}
|
|
|
|
do_libc_start_files() {
|
|
:
|
|
}
|
|
|
|
do_libc() {
|
|
:
|
|
}
|
|
|
|
do_libc_post_cc() {
|
|
CT_DoStep INFO "Installing C library"
|
|
|
|
CT_DoLog EXTRA "Copying sources to build directory"
|
|
CT_DoExecLog ALL cp -av "${CT_SRC_DIR}/avr-libc-${CT_LIBC_VERSION}" \
|
|
"${CT_BUILD_DIR}/build-libc-post-cc"
|
|
cd "${CT_BUILD_DIR}/build-libc-post-cc"
|
|
|
|
do_libc_configure
|
|
|
|
CT_DoLog EXTRA "Building C library"
|
|
CT_DoExecLog ALL make ${JOBSFLAGS}
|
|
|
|
CT_DoLog EXTRA "Installing C library"
|
|
CT_DoExecLog ALL make install
|
|
|
|
CT_EndStep
|
|
}
|