#!/bin/bash

. /usr/local/tools/dotkit/init.sh
use mvapich2-gnu-2.2

set -x

topdir=`pwd`
installdir=$topdir/install
export PATH="${topdir}/autotools/install/bin:$PATH"

# if EA is set to true then add configure option
EA=false
build_type=""
CC=mpicc
if $EA ; then
        # build line option required if building for EA systems
        build_type="powerpc64le-redhat-linux-gnu"
        CC=mpigcc
        export CXX=mpig++
fi

./autogen.sh

rm -rf build
mkdir -p build
cd build

export PKG_CONFIG_PATH="${installdir}/lib/pkgconfig"

# TODO: avoid this step
# necessary so configure test of dtcmp links with MPI

export CC=${CC} 

# hack to get things to build after common library
export CFLAGS="-g -O0 -I${topdir}/src/common -DDCOPY_USE_XATTRS"
export LDFLAGS="-Wl,-rpath,${topdir}/install/lib -L${topdir}/install/lib -lcircle"

../configure --build=${build_type} \
  --enable-lustre \
  --enable-experimental \
  --prefix=$installdir \
  --disable-silent-rules \
  --with-dtcmp=$installdir && \
make uninstall && \
make VERBOSE=1 && \
make VERBOSE=1 install
if [ $? -ne 0 ] ; then
  echo "failed to configure, build, or install file utils"
  exit 1
fi
