-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure
168 lines (139 loc) · 4.05 KB
/
configure
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#!/bin/bash
# Copyright 2014-2015, Dominique LaSalle. Used with permission.
###############################################################################
# CONFIG VARIABLES ############################################################
###############################################################################
NAME="splatt"
###############################################################################
# FUNCTIONS ###################################################################
###############################################################################
die() {
echo "ERROR: ${@}" 1>&2
exit 1
}
abspath() {
if [[ "${@::1}" == "/" ]]; then
echo "${@}"
else
echo "${PWD}/${@}"
fi
}
show_help() {
echo "USAGE: configure [options]"
echo ""
echo "OPTIONS:"
echo " --prefix=<prefix>"
echo " Set the install prefix."
echo " --cc=<cc>"
echo " Set the C compiler to use."
echo " --mpi"
echo " Build with MPI support"
echo " --mtmetis"
echo " Build with MT-Metis graph partitioning (must be previously installed)."
echo " --patoh"
echo " Build with PaToH hypergraph partitioning (must be previously installed)."
echo " --ashado"
echo " Build with Ashado hypergraph partitioning (must be previously installed)."
echo " --debug"
echo " Build with debugging symbols, assertions, and turn optimizations off."
echo " --dev"
echo " Build in development mode. Warnings and extra logging enabled."
echo ""
}
###############################################################################
# OPTION PARSING ##############################################################
###############################################################################
#CONFIG_FLAGS="-DCMAKE_VERBOSE_MAKEFILE=1"
CONFIG_FLAGS=""
# default values
CMAKE="$(which cmake)"
BUILDDIR="build/$(uname -s)-$(uname -m)"
# parse arguments
for i in "${@}"; do
case "${i}" in
# help
-h|--help)
show_help
exit 0
;;
# MPI support
--mpi)
CONFIG_FLAGS="${CONFIG_FLAGS} -DUSE_MPI=1"
;;
--adatm)
CONFIG_FLAGS="${CONFIG_FLAGS} -DUSE_ADATM=1"
;;
--mtmetis)
CONFIG_FLAGS="${CONFIG_FLAGS} -DUSE_MTMETIS=1"
;;
--patoh)
CONFIG_FLAGS="${CONFIG_FLAGS} -DUSE_PATOH=1"
;;
--ashado)
CONFIG_FLAGS="${CONFIG_FLAGS} -DUSE_ASHADO=1"
;;
# prefix
--prefix=*)
CONFIG_FLAGS="${CONFIG_FLAGS} -DCMAKE_INSTALL_PREFIX=${i#*=}"
;;
# cc
--cc=*)
CONFIG_FLAGS="${CONFIG_FLAGS} -DCMAKE_C_COMPILER=${i#*=}"
;;
# debug
--debug)
CONFIG_FLAGS="${CONFIG_FLAGS} -DDEBUG=1"
;;
# dev
--dev)
CONFIG_FLAGS="${CONFIG_FLAGS} -DDEV_MODE=1"
;;
# bad argument
*)
die "Unknown option '${i}'"
;;
esac
done
# check if cmake exists
if [[ ! -x "${CMAKE}" ]]; then
die "Could not find usable cmake: '${CMAKE}'"
else
echo "Found CMAKE: '${CMAKE}'"
fi
# clean out build directory if it exists
if [[ -d "${BUILDDIR}" ]]; then
echo "Removing old build directory '${BUILDDIR}'..."
rm -rf "${BUILDDIR}"
fi
# create build directory
mkdir -vp "${BUILDDIR}" || \
die "Failed to create build directory: '${BUILDDIR}'"
###############################################################################
# RUN CMAKE ###################################################################
###############################################################################
ROOTDIR="${PWD}"
pushd "${BUILDDIR}"
echo "Calling cmake with arguments '${CONFIG_FLAGS}'"
"${CMAKE}" "${ROOTDIR}" ${CONFIG_FLAGS}
if [[ "$?" != "0" ]]; then
echo "CMake failed with '$?'" 1>&2
exit $?
fi
popd
# create proxy makefile
(
echo "#######################################################################"
echo "# Makefile generated by '$0' at $(date)"
echo "# Using flags:"
for d in ${CONFIG_FLAGS}; do
echo "# ${d}"
done
echo "#######################################################################"
echo ""
echo "all clean install uninstall:"
echo " make -C ${BUILDDIR} \$@ \$(MAKEFLAGS)"
echo ""
echo "distclean:"
echo " rm -rf ${BUILDDIR} Makefile"
echo ""
) > Makefile