forked from hpc/mpifileutils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
buildme_dev
executable file
·52 lines (41 loc) · 1.13 KB
/
buildme_dev
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/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