2009-05-05 22:04:20 +00:00
|
|
|
# This file adds the functions to build the PPL library
|
|
|
|
# Copyright 2009 Yann E. MORIN
|
|
|
|
# Licensed under the GPL v2. See COPYING in the root of this package
|
|
|
|
|
|
|
|
do_ppl_get() { :; }
|
|
|
|
do_ppl_extract() { :; }
|
2011-07-24 21:53:14 +00:00
|
|
|
do_ppl_for_build() { :; }
|
2011-07-17 16:56:30 +00:00
|
|
|
do_ppl_for_host() { :; }
|
2009-05-05 22:04:20 +00:00
|
|
|
|
|
|
|
# Overide functions depending on configuration
|
2010-02-17 22:47:47 +00:00
|
|
|
if [ "${CT_PPL}" = "y" ]; then
|
2009-05-05 22:04:20 +00:00
|
|
|
|
|
|
|
# Download PPL
|
|
|
|
do_ppl_get() {
|
|
|
|
CT_GetFile "ppl-${CT_PPL_VERSION}" \
|
|
|
|
http://www.cs.unipr.it/ppl/Download/ftp/releases/${CT_PPL_VERSION} \
|
2009-05-21 19:07:16 +00:00
|
|
|
ftp://ftp.cs.unipr.it/pub/ppl/releases/${CT_PPL_VERSION} \
|
|
|
|
ftp://gcc.gnu.org/pub/gcc/infrastructure
|
2009-05-05 22:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Extract PPL
|
|
|
|
do_ppl_extract() {
|
|
|
|
CT_Extract "ppl-${CT_PPL_VERSION}"
|
2010-04-11 21:18:10 +00:00
|
|
|
CT_Patch "ppl" "${CT_PPL_VERSION}"
|
2009-05-05 22:04:20 +00:00
|
|
|
}
|
|
|
|
|
2011-07-24 21:53:14 +00:00
|
|
|
# Build PPL for running on build
|
|
|
|
# - always build statically
|
|
|
|
# - we do not have build-specific CFLAGS
|
|
|
|
# - install in build-tools prefix
|
|
|
|
do_ppl_for_build() {
|
|
|
|
local -a ppl_opts
|
|
|
|
|
|
|
|
case "${CT_TOOLCHAIN_TYPE}" in
|
|
|
|
native|cross) return 0;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
CT_DoStep INFO "Installing PPL for build"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-ppl-build-${CT_BUILD}"
|
|
|
|
|
|
|
|
ppl_opts+=( "host=${CT_BUILD}" )
|
|
|
|
ppl_opts+=( "prefix=${CT_BUILDTOOLS_PREFIX_DIR}" )
|
2012-11-16 14:25:57 +00:00
|
|
|
ppl_opts+=( "cflags=${CT_CFLAGS_FOR_BUILD}" )
|
|
|
|
ppl_opts+=( "ldflags=${CT_LDFLAGS_FOR_BUILD}" )
|
2011-07-24 21:53:14 +00:00
|
|
|
do_ppl_backend "${ppl_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
# Build PPL for running on host
|
|
|
|
do_ppl_for_host() {
|
|
|
|
local -a ppl_opts
|
2009-05-05 22:04:20 +00:00
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
CT_DoStep INFO "Installing PPL for host"
|
|
|
|
CT_mkdir_pushd "${CT_BUILD_DIR}/build-ppl-host-${CT_HOST}"
|
2009-05-05 22:04:20 +00:00
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
ppl_opts+=( "host=${CT_HOST}" )
|
2011-07-25 17:04:17 +00:00
|
|
|
ppl_opts+=( "prefix=${CT_HOST_COMPLIBS_DIR}" )
|
2011-07-17 16:56:30 +00:00
|
|
|
ppl_opts+=( "cflags=${CT_CFLAGS_FOR_HOST}" )
|
2012-11-16 14:25:57 +00:00
|
|
|
ppl_opts+=( "ldflags=${CT_LDFLAGS_FOR_HOST}" )
|
2011-07-17 16:56:30 +00:00
|
|
|
do_ppl_backend "${ppl_opts[@]}"
|
|
|
|
|
|
|
|
CT_Popd
|
|
|
|
CT_EndStep
|
|
|
|
}
|
2010-04-10 22:47:23 +00:00
|
|
|
|
2011-07-17 16:56:30 +00:00
|
|
|
# Build PPL
|
|
|
|
# Parameter : description : type : default
|
|
|
|
# host : machine to run on : tuple : (none)
|
|
|
|
# prefix : prefix to install into : dir : (none)
|
2012-11-16 14:25:57 +00:00
|
|
|
# cflags : cflags to use : string : (empty)
|
|
|
|
# ldflags : ldflags to use : string : (empty)
|
2011-07-17 16:56:30 +00:00
|
|
|
do_ppl_backend() {
|
|
|
|
local host
|
|
|
|
local prefix
|
|
|
|
local cflags
|
2012-11-16 14:25:57 +00:00
|
|
|
local ldflags
|
2011-07-17 16:56:30 +00:00
|
|
|
local arg
|
|
|
|
|
|
|
|
for arg in "$@"; do
|
|
|
|
eval "${arg// /\\ }"
|
|
|
|
done
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Configuring PPL"
|
2010-04-10 22:47:23 +00:00
|
|
|
|
2011-03-20 00:06:26 +00:00
|
|
|
CT_DoExecLog CFG \
|
2011-07-17 16:56:30 +00:00
|
|
|
CFLAGS="${cflags}" \
|
|
|
|
CXXFLAGS="${cflags}" \
|
2012-11-16 14:25:57 +00:00
|
|
|
LDFLAGS="${ldflags}" \
|
2009-05-05 22:04:20 +00:00
|
|
|
"${CT_SRC_DIR}/ppl-${CT_PPL_VERSION}/configure" \
|
|
|
|
--build=${CT_BUILD} \
|
2011-07-17 16:56:30 +00:00
|
|
|
--host=${host} \
|
|
|
|
--prefix="${prefix}" \
|
|
|
|
--with-libgmp-prefix="${prefix}" \
|
|
|
|
--with-libgmpxx-prefix="${prefix}" \
|
|
|
|
--with-gmp-prefix="${prefix}" \
|
2011-03-26 23:07:59 +00:00
|
|
|
--enable-watchdog \
|
2009-05-05 22:04:20 +00:00
|
|
|
--disable-debugging \
|
|
|
|
--disable-assertions \
|
|
|
|
--disable-ppl_lcdd \
|
2010-04-10 22:47:23 +00:00
|
|
|
--disable-ppl_lpsol \
|
2011-04-06 20:30:57 +00:00
|
|
|
--disable-shared \
|
complibs/ppl: build only C and C++ interfaces for PPL
By default, PPL wants to build interfaces for any of a variety of
langauges it finds on the local host (python, java, possibly perl, also
more esoteric languages such as ocaml and prolog).
These extra interfaces can double the compile time for the library. For
single-process builds, I found a savings of more than 40%:
default / j1: 716s total, 143.2s avg, 0.52s stdev
just_c / j1: 406s total, 81.2s avg, 0.33s stdev
just_c_cpp / j1: 413s total, 82.6s avg, 0.22s stdev
And for multi-process builds, it approached 50%:
default / j4: 625s total, 125.0s avg, 0.57s stdev
just_c / j4: 338s total, 67.6s avg, 1.25s stdev
just_c_cpp / j4: 327s total, 65.4s avg, 0.36s stdev
Since the PPL we build within ct-ng is only used by GCC, we only need to
build the C and C++ interfaces.
Signed-Off-By: Anthony Foiani <anthony.foiani@gmail.com>
2011-05-19 21:06:16 +00:00
|
|
|
--enable-interfaces='c c++' \
|
2011-04-06 20:30:57 +00:00
|
|
|
--enable-static
|
2009-05-05 22:04:20 +00:00
|
|
|
|
|
|
|
# Maybe-options:
|
|
|
|
# --enable-optimization=speed or sspeed (yes, with 2 's')
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Building PPL"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS}
|
2009-05-05 22:04:20 +00:00
|
|
|
|
2010-04-10 21:42:28 +00:00
|
|
|
if [ "${CT_COMPLIBS_CHECK}" = "y" ]; then
|
2009-05-05 22:04:20 +00:00
|
|
|
CT_DoLog EXTRA "Checking PPL"
|
2011-01-22 21:35:43 +00:00
|
|
|
CT_DoExecLog ALL make ${JOBSFLAGS} -s check
|
2009-05-05 22:04:20 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
CT_DoLog EXTRA "Installing PPL"
|
|
|
|
CT_DoExecLog ALL make install
|
|
|
|
|
2009-06-01 15:53:42 +00:00
|
|
|
# Remove spuriously installed file
|
2011-07-17 16:56:30 +00:00
|
|
|
CT_DoExecLog ALL rm -f "${prefix}/bin/ppl-config"
|
2009-05-05 22:04:20 +00:00
|
|
|
}
|
|
|
|
|
2010-02-17 22:47:47 +00:00
|
|
|
fi # CT_PPL
|