complibs/libelf: enable the host build

Host libelf is required by gcc-4.5.0
This commit is contained in:
Yann E. MORIN" 2010-04-15 22:42:06 +02:00
parent 9962be4d9c
commit eed8d50d02

View File

@ -21,44 +21,40 @@ do_libelf_extract() {
if [ "${CT_LIBELF}" = "y" ]; then
# Uncomment when we need it for gcc-4.5
# WARNING! This function is absolutely UNTESTED yet!
do_libelf() {
: # Remove this line! and uncomment the following lines
# local -a libelf_opts
#
# CT_DoStep INFO "Installing libelf"
# mkdir -p "${CT_BUILD_DIR}/build-libelf"
# CT_Pushd "${CT_BUILD_DIR}/build-libelf"
#
# CT_DoLog EXTRA "Configuring libelf"
#
# if [ "${CT_COMPLIBS_SHARED}" = "y" ]; then
# libelf_opts+=( --enable-shared --disable-static )
# else
# libelf_opts+=( --disable-shared --enable-static )
# fi
#
# CC="${CT_TARGET}-gcc" \
# CT_DoExecLog ALL \
# "${CT_SRC_DIR}/libelf-${CT_LIBELF_VERSION}/configure" \
# --build=${CT_BUILD} \
# --host=${CT_HOST} \
# --target=${CT_TARGET} \
# --prefix="${CT_COMPLIBS_DIR}" \
# --enable-compat \
# --enable-elf64 \
# --enable-extended-format \
# "${libelf_opts[@]}"
#
# CT_DoLog EXTRA "Building libelf"
# CT_DoExecLog ALL make
#
# CT_DoLog EXTRA "Installing libelf"
# CT_DoExecLog ALL make instroot="${CT_SYSROOT_DIR}" install
#
# CT_Popd
# CT_EndStep
local -a libelf_opts
CT_DoStep INFO "Installing libelf"
mkdir -p "${CT_BUILD_DIR}/build-libelf"
CT_Pushd "${CT_BUILD_DIR}/build-libelf"
CT_DoLog EXTRA "Configuring libelf"
if [ "${CT_COMPLIBS_SHARED}" = "y" ]; then
libelf_opts+=( --enable-shared --disable-static )
else
libelf_opts+=( --disable-shared --enable-static )
fi
CT_DoExecLog ALL \
"${CT_SRC_DIR}/libelf-${CT_LIBELF_VERSION}/configure" \
--build=${CT_BUILD} \
--host=${CT_HOST} \
--target=${CT_TARGET} \
--prefix="${CT_COMPLIBS_DIR}" \
--enable-compat \
--enable-elf64 \
--enable-extended-format \
"${libelf_opts[@]}"
CT_DoLog EXTRA "Building libelf"
CT_DoExecLog ALL make
CT_DoLog EXTRA "Installing libelf"
CT_DoExecLog ALL make install
CT_Popd
CT_EndStep
}
fi # CT_LIBELF