-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfigure
More file actions
executable file
·255 lines (206 loc) · 7.97 KB
/
Copy pathconfigure
File metadata and controls
executable file
·255 lines (206 loc) · 7.97 KB
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
#!/bin/bash
#==================================================================================================
#
# Configuration script for the Blaze library
#
# Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
#
# This file is part of the Blaze library. You can redistribute it and/or modify it under
# the terms of the New (Revised) BSD License. Redistribution and use in source and binary
# forms, with or without modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
# 3. Neither the names of the Blaze development group nor the names of its contributors
# may be used to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
#==================================================================================================
#######################################
# Parsing the command line arguments
# Checking the number of command line arguments
if [ $# -ge 2 ]; then
echo "Invalid use of the Blaze configuration script. Type './configure -h' to display the help."
exit 1
fi
# Printing the help
if test "$1" = "--help" || test "$1" = "-help" || test "$1" = "-h"; then
echo
echo "Usage: ./configure [<config_file>]"
echo
echo "Configuration of the compilation process of the Blaze library. The system-specific"
echo "settings are specified via the given configuration file <config_file>. In case no"
echo "<config_file> is specified, the settings of the default 'Configfile' are used."
echo
echo "Options:"
echo " -h, -help, --help Displays this information"
echo
exit 0
fi
#####################################
# Selecting the configuration file
CONFIGFILE="Configfile"
if [ $# = 1 ]; then
if [ ! -f "$1" ]; then
echo "Config file '$1' cannot be found."
exit 1
else
CONFIGFILE="$1"
fi
fi
source $CONFIGFILE
##########################
# Checking the settings
# Checking the version settings
if test $VERSION != "debug" && test $VERSION != "release"; then
echo "Invalid version settings. Possible options are 'debug' and 'release'."
exit 1
fi
# Checking the library settings
if test $LIBRARY != "static" && test $LIBRARY != "shared" && test $LIBRARY != "both"; then
echo "Invalid library settings. Possible options are 'static', 'shared' and 'both'."
exit 1
fi
############################
# Blaze specific settings
INSTALL_PATH="$( cd "$( dirname "$0" )" && pwd )"
AR="ar crus"
LIBDIR="\$(INSTALL_PATH)/lib"
STATIC_LIB="libblaze.a"
SHARED_LIB="libblaze.so"
UTILDIR="\$(INSTALL_PATH)/src/util"
DOCDIR="\$(INSTALL_PATH)/doc"
############################
# Generating the Makefile
if test $VERSION = "debug"; then
if [[ ! "$CXXFLAGS" =~ "-g" ]]; then
CXXFLAGS="$CXXFLAGS -g"
fi
else
if [[ ! "$CXXFLAGS" =~ "-DNDEBUG" ]]; then
CXXFLAGS="$CXXFLAGS -DNDEBUG"
fi
fi
if test $LIBRARY = "shared" || test $LIBRARY = "both"; then
CXXFLAGS="$CXXFLAGS -fPIC"
fi
if test $LIBRARY = "static"; then
LIBS="static"
fi
if test $LIBRARY = "shared"; then
LIBS="shared"
fi
if test $LIBRARY = "both"; then
LIBS="static shared"
fi
LIBRARIES=$LIBRARY_DIRECTIVES
BOOST_LIBRARY_PATH=${BOOST_LIBRARY_PATH%"/"}
if [ -n "$BOOST_LIBRARY_PATH" ] && [[ ! "$LIBRARIES" =~ "$BOOST_LIBRARY_PATH " ]]; then
LIBRARIES="${LIBRARIES%" "} -L$BOOST_LIBRARY_PATH "
fi
BOOST_SYSTEM_LIBRARY=${BOOST_SYSTEM_LIBRARY#"lib"}
if [ -n "$BOOST_SYSTEM_LIBRARY" ]; then
LIBRARIES="${LIBRARIES%" "} -l$BOOST_SYSTEM_LIBRARY"
else
LIBRARIES="${LIBRARIES%" "} -lboost_system"
fi
BOOST_THREAD_LIBRARY=${BOOST_THREAD_LIBRARY#"lib"}
if [ -n "$BOOST_THREAD_LIBRARY" ]; then
LIBRARIES="${LIBRARIES%" "} -l$BOOST_THREAD_LIBRARY"
else
LIBRARIES="${LIBRARIES%" "} -lboost_thread"
fi
LIBRARIES=${LIBRARIES%" "}
MODULES="util"
cat > Makefile <<EOF
#==================================================================================================
#
# Makefile for the Blaze library
#
# Copyright (C) 2013 Klaus Iglberger - All Rights Reserved
#
# This file is part of the Blaze library. You can redistribute it and/or modify it under
# the terms of the New (Revised) BSD License. Redistribution and use in source and binary
# forms, with or without modification, are permitted provided that the following conditions
# are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
# 3. Neither the names of the Blaze development group nor the names of its contributors
# may be used to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
# SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
# DAMAGE.
#
#==================================================================================================
# Compiler configuration
export CXX = $CXX
export CXXFLAGS = $CXXFLAGS
# Exporting the installation path and object path
export INSTALL_PATH = $INSTALL_PATH
export OBJECT_PATH = $INSTALL_PATH/obj
# Exporting the boost include path
export BOOST_INCLUDE_PATH = $BOOST_INCLUDE_PATH
EOF
cat >> Makefile <<EOF
# Build rules
default: $LIBS
@echo
static: $MODULES
@echo
@echo "Creating static library"
@$AR $LIBDIR/$STATIC_LIB \$(OBJECT_PATH)/*.o
@echo "... finished!"
shared: $MODULES
@echo
@echo "Creating shared library"
@\$(CXX) -shared -o $LIBDIR/$SHARED_LIB \$(OBJECT_PATH)/*.o $LIBRARIES
@echo "... finished!"
util:
@echo
@echo "Setup of the utility module..."
@\$(MAKE) --no-print-directory -C $UTILDIR
@echo "...Setup of the utility module complete!"
# Clean up rules
clean:
@echo "Cleaning up..."
@\$(MAKE) --no-print-directory -C $UTILDIR clean
@\$(RM) $LIBDIR/$STATIC_LIB $LIBDIR/$SHARED_LIB \$(OBJECT_PATH)/*.o
# Doxygen documentation
doc:
@doxygen Doxyfile
doc_clean:
@\$(RM) -r $DOCDIR/html/ $DOCDIR/latex/
# Setting the independent commands
.PHONY: default clean doc doc_clean
EOF
#######################################
# Clearing the object file directory
rm -f obj/*