-
Notifications
You must be signed in to change notification settings - Fork 3
/
3-compile-64-libs.sh
executable file
·226 lines (197 loc) · 6.9 KB
/
3-compile-64-libs.sh
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
#!/bin/sh
#######################################################################################
### Initialization of the environment
#######################################################################################
# include main compilation parameters
my_dir="$(dirname "$0")"
. "$my_dir/compile-params.in"
# make shared lib directories - otherwise lib compilation creates lib / include / ... file instead of files within the directory
sudo mkdir ${prefix64}/lib
sudo mkdir ${prefix64}/include
sudo mkdir ${prefix64}/share
sudo mkdir ${prefix64}/bin
# pre-compile 64bit indexing for libs
cd ${libs64src}
#######################################################################################
# BLAS
#######################################################################################
echo "`date` : Compiling BLAS ..."
cp -Rf ${libs64src_mods}/BLAS.mod/* BLAS/
cd BLAS
# make clean
make prefix64=${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing BLAS ..."
echo BLAS lib testing not supported
fi
cd ..
#######################################################################################
# LAPACK
#######################################################################################
echo "`date` : Compiling LAPACK ..."
cp -Rf ${libs64src_mods}/LAPACK.mod/* LAPACK/
cp -f ./BLAS/blas_LINUX.a ./LAPACK/libblas.a
cd LAPACK
# make clean
make lib blaslib prefix64=${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing LAPACK ..."
# required - otherwise testing of lapack will end with segementation fault !
ulimit -s unlimited
# do the testing
make blas_testing prefix64=${prefix64}
make lapack_testing prefix64=${prefix64}
fi
# installation
echo "`date` : Installing BLAS & LAPACK ..."
sudo make lapack_install prefix64=${prefix64}
cd ..
#######################################################################################
# BLAS & LAPACK - installation
#######################################################################################
# copy BLAS & LAPACK to LIB directory
sudo cp -f LAPACK/*.a ${prefix64}/lib
#######################################################################################
# ARPACK
#######################################################################################
echo "`date` : Compiling & installing ARPACK ..."
cp -Rf ${libs64src_mods}/ARPACK.mod/* ARPACK/
cd ARPACK
# Compile directly into install directory $prefix64/lib
sudo make lib prefix64=${prefix64} octave64_gitroot=${octave64_gitroot} libs64=${libs64}
# Create SO-Lib in install directory $prefix64/lib
sudo ./make_so_lib.sh ${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing ARPACK ..."
ARPACK lib testing not supported
fi
cd ..
################################################################################$
# QRUPDATE
################################################################################$
echo "`date` : Compiling QRUPDATE ..."
cp -Rf ${libs64src_mods}/QRUPDATE.mod/* QRUPDATE/
cd QRUPDATE
make lib solib prefix64=${prefix64} libs64=${libs64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing QRUPDATE ..."
make test prefix64=${prefix64} libs64=${libs64}
fi
# Installation
echo "`date` : Installing QRUPDATE ..."
sudo make install prefix64=${prefix64} libs64=${libs64}
cd ..
#######################################################################################
# SUITESPARSE
#######################################################################################
echo "`date` : Compiling SuiteSparse (version ${octave64_SS_version}) ..."
cp -Rf ${libs64src_mods}/SS-${octave64_SS_version}.mod/* SUITESPARSE/
cd SUITESPARSE
# make prefix64=${prefix64}
make library prefix64=${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# test of SUITESPARSE - if supported
echo "`date` : Testing SuiteSparse - AMD ..."
cd AMD/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - CAMD ..."
cd CAMD/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - CCOLAMD ..."
cd CCOLAMD/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - CHOLMOD ..."
cd CHOLMOD/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - COLAMD ..."
cd COLAMD/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - CSparse ..."
cd CSparse/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - CXSparse ..."
cd CXSparse/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - KLU ..."
cd KLU/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - LDL ..."
cd LDL/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - SPQR ..."
cd SPQR/Demo
make
cd ../..
echo "`date` : Testing SuiteSparse - UMFPACK ..."
cd UMFPACK/Demo
make
cd ../..
# test of metis-4.0 used inside SUITESPARSE
echo "Testing metis-4.0 in SuiteSparse ..."
cd metis-4.0/Graphs
./mtest *.mgraph
cd ../..
echo "`date` : Testing SuiteSparse - END!"
fi
echo "`date` : Installing SuiteSparse ..."
# new version has already "make install"
sudo make install prefix64=${prefix64}
cd ..
#######################################################################################
# QHULL
#######################################################################################
echo "`date` : Compiling QHULL ..."
cp -Rf ${libs64src_mods}/QHULL.mod/* QHULL/
cd QHULL
make prefix64=${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing QHULL ..."
export LD_LIBRARY_PATH=$PWD/lib:$LD_LIBRARY_PATH ; make test prefix64=${prefix64}
fi
# Installation
echo "`date` : Installing QHULL ..."
sudo make install prefix64=${prefix64}
cd ..
#######################################################################################
# GLPK
#######################################################################################
echo "`date` : Compiling GLPK ..."
# no GLPK modifications
# cp -Rf ${libs64src_mods}/GLPK.mod/* GLPK/
cd GLPK
./configure prefix=${prefix64}
make prefix64=${prefix64}
# test compilation if requested
if [ "${octave64_libs_compilation_test}" = "Y" ] ; then
# add library compilation test here - if supported
echo "`date` : Testing GLPK ..."
make check prefix64=${prefix64}
fi
# Installation
echo "`date` : Installing GLPK ..."
sudo make install prefix64=${prefix64}
cd ..
#######################################################################################
# end of libs
#######################################################################################
cd ../..