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 23:53:14 +02:00
|
|
|
do_cloog_for_build() { :; }
|
2011-07-17 18:56:30 +02:00
|
|
|
do_cloog_for_host() { :; }
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
cloog_basename() {
|
|
|
|
printf "cloog"
|
|
|
|
if [ "${CT_PPL}" = "y" ]; then
|
|
|
|
printf -- "-ppl"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
cloog_basename_version() {
|
|
|
|
cloog_basename
|
|
|
|
printf -- "-${CT_CLOOG_VERSION}"
|
|
|
|
}
|
|
|
|
|
2009-05-24 22:04:14 +00:00
|
|
|
# Overide functions depending on configuration
|
2010-02-17 23:47:47 +01:00
|
|
|
if [ "${CT_CLOOG}" = "y" ]; then
|
2009-05-24 22:04:14 +00:00
|
|
|
|
|
|
|
# Download CLooG
|
|
|
|
do_cloog_get() {
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_GetFile "$(cloog_basename_version)" \
|
2015-04-26 08:09:08 -07:00
|
|
|
http://www.bastoul.net/cloog/pages/download \
|
|
|
|
ftp://gcc.gnu.org/pub/gcc/infrastructure
|
2009-05-24 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Extract CLooG
|
|
|
|
do_cloog_extract() {
|
2009-09-12 10:16:28 +02: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 14:58:29 +02:00
|
|
|
# But, because the infrastructure properly creates the extracted
|
|
|
|
# directories (with tar's --strip-components), we can live safely...
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_Extract "$(cloog_basename_version)"
|
|
|
|
CT_Patch "$(cloog_basename)" "${CT_CLOOG_VERSION}"
|
2011-10-16 14:58:29 +02:00
|
|
|
|
2012-07-31 22:27:29 +02:00
|
|
|
# Help the autostuff in case it thinks there are things to regenerate...
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoExecLog DEBUG mkdir -p "${CT_SRC_DIR}/$(cloog_basename_version)/m4"
|
2012-07-31 22:27:29 +02:00
|
|
|
|
2011-10-16 15:10:29 +02:00
|
|
|
if [ "${CT_CLOOG_NEEDS_AUTORECONF}" = "y" ]; then
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_Pushd "${CT_SRC_DIR}/$(cloog_basename_version)"
|
2011-10-10 00:00:58 +02:00
|
|
|
CT_DoExecLog CFG ./autogen.sh
|
2011-10-16 14:58:29 +02:00
|
|
|
CT_Popd
|
2011-01-13 23:20:39 +01:00
|
|
|
fi
|
2009-05-24 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
# Build CLooG for running on build
|
2011-07-24 23:53:14 +02:00
|
|
|
# - 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
|
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoStep INFO "Installing CLooG for build"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-cloog-build-${CT_BUILD}"
|
2011-07-24 23:53:14 +02:00
|
|
|
|
|
|
|
cloog_opts+=( "host=${CT_BUILD}" )
|
|
|
|
cloog_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
|
2012-11-16 15:25:57 +01:00
|
|
|
cloog_opts+=( "cflags=${CT_CFLAGS_FOR_BUILD}" )
|
|
|
|
cloog_opts+=( "ldflags=${CT_LDFLAGS_FOR_BUILD}" )
|
2011-07-24 23:53:14 +02:00
|
|
|
do_cloog_backend "${cloog_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
# Build CLooG for running on host
|
2011-07-17 18:56:30 +02:00
|
|
|
do_cloog_for_host() {
|
|
|
|
local -a cloog_opts
|
2009-09-13 12:25:33 +02:00
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoStep INFO "Installing CLooG for host"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-cloog-host-${CT_HOST}"
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2011-07-17 18:56:30 +02:00
|
|
|
cloog_opts+=( "host=${CT_HOST}" )
|
2011-07-25 19:04:17 +02:00
|
|
|
cloog_opts+=( "prefix=${CT_HOST_COMPLIBS_DIR}" )
|
2011-07-17 18:56:30 +02:00
|
|
|
cloog_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
2012-11-16 15:25:57 +01:00
|
|
|
cloog_opts+=( "ldflags=${CT_LDFLAGS_FOR_HOST}" )
|
2011-07-17 18:56:30 +02:00
|
|
|
do_cloog_backend "${cloog_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
# Build CLooG
|
2011-07-17 18:56:30 +02:00
|
|
|
# Parameter : description : type : default
|
|
|
|
# host : machine to run on : tuple : (none)
|
|
|
|
# prefix : prefix to install into : dir : (none)
|
2012-11-16 15:25:57 +01:00
|
|
|
# cflags : cflags to use : string : (empty)
|
|
|
|
# ldflags : ldflags to use : string : (empty)
|
2011-07-17 18:56:30 +02:00
|
|
|
do_cloog_backend() {
|
|
|
|
local host
|
|
|
|
local prefix
|
|
|
|
local cflags
|
2012-11-16 15:25:57 +01:00
|
|
|
local ldflags
|
2013-05-05 00:01:05 +02:00
|
|
|
local cloog_src_dir="${CT_SRC_DIR}/$(cloog_basename_version)"
|
2011-07-17 18:56:30 +02:00
|
|
|
local arg
|
2013-05-05 00:01:05 +02:00
|
|
|
local -a cloog_opts
|
|
|
|
local -a cloog_targets
|
|
|
|
local -a cloog_install_targets
|
2011-07-17 18:56:30 +02:00
|
|
|
|
|
|
|
for arg in "$@"; do
|
|
|
|
eval "${arg// /\\ }"
|
|
|
|
done
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
if [ "${CT_CLOOG_0_18_or_later}" = y ]; then
|
|
|
|
cloog_opts+=( --with-gmp=system --with-gmp-prefix="${prefix}" )
|
|
|
|
cloog_opts+=( --with-isl=system --with-isl-prefix="${prefix}" )
|
|
|
|
cloog_opts+=( --without-osl )
|
|
|
|
cloog_targets=( all )
|
|
|
|
cloog_install_targets=( install )
|
|
|
|
else
|
|
|
|
cloog_opts+=( --with-gmp="${prefix}" )
|
|
|
|
cloog_opts+=( --with-ppl="${prefix}" )
|
|
|
|
cloog_targets=( libcloog.la )
|
|
|
|
cloog_install_targets=( install-libLTLIBRARIES install-pkgincludeHEADERS )
|
|
|
|
fi
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Configuring CLooG"
|
2010-04-11 00:47:23 +02:00
|
|
|
|
2011-03-20 01:07:06 +01:00
|
|
|
CT_DoExecLog CFG \
|
2011-07-17 18:56:30 +02:00
|
|
|
CFLAGS="${cflags}" \
|
2012-11-16 15:25:57 +01:00
|
|
|
LDFLAGS="${ldflags}" \
|
2012-01-27 13:31:16 +01:00
|
|
|
LIBS="-lm" \
|
2011-10-16 14:58:29 +02:00
|
|
|
"${cloog_src_dir}/configure" \
|
2009-09-13 12:25:33 +02:00
|
|
|
--build=${CT_BUILD} \
|
2011-07-17 18:56:30 +02:00
|
|
|
--host=${host} \
|
|
|
|
--prefix="${prefix}" \
|
2010-04-11 00:47:23 +02:00
|
|
|
--with-bits=gmp \
|
2011-04-06 22:30:57 +02:00
|
|
|
--with-host-libstdcxx='-lstdc++' \
|
|
|
|
--disable-shared \
|
2013-05-05 00:01:05 +02:00
|
|
|
--enable-static \
|
|
|
|
"${cloog_opts[@]}"
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoLog EXTRA "Building CLooG"
|
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} "${cloog_targets[@]}"
|
2009-05-24 22:04:14 +00:00
|
|
|
|
2010-04-10 23:42:28 +02:00
|
|
|
if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoLog EXTRA "Checking CLooG"
|
2011-01-22 22:35:43 +01:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -s check
|
2009-05-24 22:04:14 +00:00
|
|
|
fi
|
|
|
|
|
2013-05-05 00:01:05 +02:00
|
|
|
CT_DoLog EXTRA "Installing CLooG"
|
|
|
|
CT_DoExecLog ALL make "${cloog_install_targets[@]}"
|
2009-05-24 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
2010-02-17 23:47:47 +01:00
|
|
|
fi # CT_CLOOG
|