mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-20 13:23:08 +00:00
7186e39f32
... as its help message says in menuconfig. Signed-off-by: Alexey Neyman <stilor@att.net>
105 lines
3.2 KiB
Bash
105 lines
3.2 KiB
Bash
# Build script for libiconv
|
|
|
|
do_libiconv_get() { :; }
|
|
do_libiconv_extract() { :; }
|
|
do_libiconv_for_build() { :; }
|
|
do_libiconv_for_host() { :; }
|
|
do_libiconv_for_target() { :; }
|
|
|
|
if [ "${CT_LIBICONV}" = "y" ]; then
|
|
|
|
do_libiconv_get() {
|
|
CT_GetFile "libiconv-${CT_LIBICONV_VERSION}" \
|
|
http://ftp.gnu.org/pub/gnu/libiconv/
|
|
}
|
|
|
|
do_libiconv_extract() {
|
|
CT_Extract "libiconv-${CT_LIBICONV_VERSION}"
|
|
CT_Patch "libiconv" "${CT_LIBICONV_VERSION}"
|
|
}
|
|
|
|
# Build libiconv for running on build
|
|
do_libiconv_for_build() {
|
|
local -a libiconv_opts
|
|
|
|
case "${CT_TOOLCHAIN_TYPE}" in
|
|
native|cross) return 0;;
|
|
esac
|
|
|
|
CT_DoStep INFO "Installing libiconv for build"
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-libiconv-build-${CT_BUILD}"
|
|
|
|
libiconv_opts+=( "host=${CT_BUILD}" )
|
|
libiconv_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
|
|
libiconv_opts+=( "cflags=${CT_CFLAGS_FOR_BUILD}" )
|
|
libiconv_opts+=( "ldflags=${CT_LDFLAGS_FOR_BUILD}" )
|
|
do_libiconv_backend "${libiconv_opts[@]}"
|
|
|
|
CT_Popd
|
|
CT_EndStep
|
|
}
|
|
|
|
# Build libiconv for running on host
|
|
do_libiconv_for_host() {
|
|
local -a libiconv_opts
|
|
|
|
CT_DoStep INFO "Installing libiconv for host"
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-libiconv-host-${CT_HOST}"
|
|
|
|
libiconv_opts+=( "host=${CT_HOST}" )
|
|
libiconv_opts+=( "prefix=${CT_HOST_COMPLIBS_DIR}" )
|
|
libiconv_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
|
libiconv_opts+=( "ldflags=${CT_LDFLAGS_FOR_HOST}" )
|
|
do_libiconv_backend "${libiconv_opts[@]}"
|
|
|
|
CT_Popd
|
|
CT_EndStep
|
|
}
|
|
|
|
# Build libiconv
|
|
# Parameter : description : type : default
|
|
# host : machine to run on : tuple : (none)
|
|
# prefix : prefix to install into : dir : (none)
|
|
# shared : build shared lib : bool : no
|
|
# cflags : host cflags to use : string : (empty)
|
|
# ldflags : host ldflags to use : string : (empty)
|
|
do_libiconv_backend() {
|
|
local host
|
|
local prefix
|
|
local shared
|
|
local cflags
|
|
local ldflags
|
|
local arg
|
|
local -a extra_config
|
|
|
|
for arg in "$@"; do
|
|
eval "${arg// /\\ }"
|
|
done
|
|
|
|
CT_DoLog EXTRA "Configuring libiconv"
|
|
|
|
if [ "${shared}" != "y" ]; then
|
|
extra_config+=("--disable-shared")
|
|
fi
|
|
|
|
CT_DoExecLog CFG \
|
|
CFLAGS="${cflags}" \
|
|
LDFLAGS="${ldflags}" \
|
|
${CONFIG_SHELL} \
|
|
"${CT_SRC_DIR}/libiconv-${CT_LIBICONV_VERSION}/configure" \
|
|
--build=${CT_BUILD} \
|
|
--host="${host}" \
|
|
--prefix="${prefix}" \
|
|
--enable-static \
|
|
--disable-nls \
|
|
"${extra_config[@]}" \
|
|
|
|
CT_DoLog EXTRA "Building libiconv"
|
|
CT_DoExecLog ALL make CC="${host}-gcc ${cflags}" ${JOBSFLAGS}
|
|
|
|
CT_DoLog EXTRA "Installing libiconv"
|
|
CT_DoExecLog ALL make install CC="${host}-gcc ${cflags}"
|
|
}
|
|
|
|
fi
|