2009-05-24 22:04:14 +00:00
|
|
|
# This file adds the functions to build the CLooG library
|
|
|
|
# Copyright 2009 Yann E. MORIN
|
|
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
|
|
|
|
do_cloog_get() { :; }
|
|
|
|
do_cloog_extract() { :; }
|
2011-07-24 21:53:14 +00:00
|
|
|
do_cloog_for_build() { :; }
|
2011-07-17 16:56:30 +00:00
|
|
|
do_cloog_for_host() { :; }
|
2009-05-24 22:04:14 +00:00
|
|
|
|
|
|
|
# Overide functions depending on configuration
|
2010-02-17 22:47:47 +00:00
|
|
|
if [ "${CT_CLOOG}" = "y" ]; then
|
2009-05-24 22:04:14 +00:00
|
|
|
|
|
|
|
# Download CLooG
|
|
|
|
do_cloog_get() {
|
|
|
|
CT_GetFile "cloog-ppl-${CT_CLOOG_VERSION}" \
|
|
|
|
ftp://gcc.gnu.org/pub/gcc/infrastructure
|
|
|
|
}
|
|
|
|
|
|
|
|
# Extract CLooG
|
|
|
|
do_cloog_extract() {
|
2009-09-12 08:16:28 +00:00
|
|
|
local _t
|
|
|
|
|
|
|
|
# Version 0.15.3 has a dirname 'cloog-ppl' (with no version in it!)
|
|
|
|
# while versions 0.15.4 onward do have the version in the dirname.
|
2011-10-16 12:58:29 +00:00
|
|
|
# But, because the infrastructure properly creates the extracted
|
|
|
|
# directories (with tar's --strip-components), we can live safely...
|
|
|
|
CT_Extract "cloog-ppl-${CT_CLOOG_VERSION}"
|
|
|
|
CT_Patch "cloog-ppl" "${CT_CLOOG_VERSION}"
|
|
|
|
|
2012-07-31 20:27:29 +00:00
|
|
|
# Help the autostuff in case it thinks there are things to regenerate...
|
|
|
|
CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}/m4"
|
|
|
|
|
2011-10-16 13:10:29 +00:00
|
|
|
if [ "${CT_CLOOG_NEEDS_AUTORECONF}" = "y" ]; then
|
2011-10-16 12:58:29 +00:00
|
|
|
CT_Pushd "${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}"
|
2011-10-09 22:00:58 +00:00
|
|
|
CT_DoExecLog CFG ./autogen.sh
|
2011-10-16 12:58:29 +00:00
|
|
|
CT_Popd
|
2011-01-13 22:20:39 +00:00
|
|
|
fi
|
2009-05-24 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
2011-07-24 21:53:14 +00:00
|
|
|
# Build CLooG/PPL for running on build
|
|
|
|
# - always build statically
|
|
|
|
# - we do not have build-specific CFLAGS
|
|
|
|
# - install in build-tools prefix
|
|
|
|
do_cloog_for_build() {
|
|
|
|
local -a cloog_opts
|
|
|
|
|
|
|
|
case "${CT_TOOLCHAIN_TYPE}" in
|
|
|
|
native|cross) return 0;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
CT_DoStep INFO "Installing CLooG/PPL for build"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-cloog-ppl-build-${CT_BUILD}"
|
|
|
|
|
|
|
|
cloog_opts+=( "host=${CT_BUILD}" )
|
|
|
|
cloog_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
|
|
|
|
do_cloog_backend "${cloog_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
# Build CLooG/PPL for running on host
|
|
|
|
do_cloog_for_host() {
|
|
|
|
local -a cloog_opts
|
2009-09-13 10:25:33 +00:00
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
CT_DoStep INFO "Installing CLooG/PPL for host"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-cloog-ppl-host-${CT_HOST}"
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
cloog_opts+=( "host=${CT_HOST}" )
|
2011-07-25 17:04:17 +00:00
|
|
|
cloog_opts+=( "prefix=${CT_HOST_COMPLIBS_DIR}" )
|
2011-07-17 16:56:30 +00:00
|
|
|
cloog_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
|
|
|
do_cloog_backend "${cloog_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
|
|
|
# Build ClooG/PPL
|
|
|
|
# Parameter : description : type : default
|
|
|
|
# host : machine to run on : tuple : (none)
|
|
|
|
# prefix : prefix to install into : dir : (none)
|
|
|
|
# cflags : host cflags to use : string : (empty)
|
|
|
|
do_cloog_backend() {
|
|
|
|
local host
|
|
|
|
local prefix
|
|
|
|
local cflags
|
|
|
|
local cloog_src_dir="${CT_SRC_DIR}/cloog-ppl-${CT_CLOOG_VERSION}"
|
|
|
|
local arg
|
|
|
|
|
|
|
|
for arg in "$@"; do
|
|
|
|
eval "${arg// /\\ }"
|
|
|
|
done
|
2009-05-24 22:04:14 +00:00
|
|
|
|
|
|
|
CT_DoLog EXTRA "Configuring CLooG/ppl"
|
2010-04-10 22:47:23 +00:00
|
|
|
|
2011-03-20 00:07:06 +00:00
|
|
|
CT_DoExecLog CFG \
|
2011-07-17 16:56:30 +00:00
|
|
|
CFLAGS="${cflags}" \
|
2012-01-27 12:31:16 +00:00
|
|
|
LIBS="-lm" \
|
2011-10-16 12:58:29 +00:00
|
|
|
"${cloog_src_dir}/configure" \
|
2009-09-13 10:25:33 +00:00
|
|
|
--build=${CT_BUILD} \
|
2011-07-17 16:56:30 +00:00
|
|
|
--host=${host} \
|
|
|
|
--prefix="${prefix}" \
|
|
|
|
--with-gmp="${prefix}" \
|
|
|
|
--with-ppl="${prefix}" \
|
2010-04-10 22:47:23 +00:00
|
|
|
--with-bits=gmp \
|
2011-04-06 20:30:57 +00:00
|
|
|
--with-host-libstdcxx='-lstdc++' \
|
|
|
|
--disable-shared \
|
|
|
|
--enable-static
|
2009-05-24 22:04:14 +00:00
|
|
|
|
|
|
|
CT_DoLog EXTRA "Building CLooG/ppl"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} libcloog.la
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2010-04-10 21:42:28 +00:00
|
|
|
if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
|
2009-05-24 22:04:14 +00:00
|
|
|
CT_DoLog EXTRA "Checking CLooG/ppl"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -s check
|
2009-05-24 22:04:14 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Installing CLooG/ppl"
|
2010-10-18 14:51:01 +00:00
|
|
|
CT_DoExecLog ALL make install-libLTLIBRARIES install-pkgincludeHEADERS
|
2009-05-24 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
2010-02-17 22:47:47 +00:00
|
|
|
fi # CT_CLOOG
|