-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakelibs.sh
More file actions
executable file
·41 lines (37 loc) · 886 Bytes
/
makelibs.sh
File metadata and controls
executable file
·41 lines (37 loc) · 886 Bytes
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
#! /bin/sh
# CCM Library compilation script
# run from distribution directory: 'makelibs.sh'
# When installing on an Intel based platform
# respond with y to the prompt
# otherwise abort and run the 'non_intel.sh' script first.
# Then run 'makelibs.sh' and respond with n at this prompt.
LST="cfit complex fft geom intg matrix roots sfunc simu sort statf tseries util xarm"
MDR=`pwd`
LSOD=$MDR/tmp
echo "Intel platform ? (y/n)"
read F
for dr in $LST
do
cd $MDR/$dr
echo `pwd`
cc -c -O3 *.c
mv *.o $LSOD
done
# Compile corrected svd QR support without optimizing
# The GNU optimizer destroys the fix!
cd $MDR/matrix
cc -c qrb*.c
mv *.o $LSOD
cd $MDR
if [ $F = "y" ]
then cd $MDR/matrix
cc -c -O3 solv.s
mv *.o $LSOD
cd $MDR/simu
cc -c -O3 *.s
mv *.o $LSOD
fi
cd $LSOD
ar r libccm.a *.o
ld -shared -o libccm.so *.o
rm *.o