blob: df18ead88e1e619866733890841a0b6051b3d19b (
plain)
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
|
#!/usr/bin/env bash
# Taken from:
# http://hg.octave.org/mxe-octave/file/tip/tools/make-shared-from-static
set -e
. tools/compat-init.sh
LD=
AR=
INSTALL=
infile=
outfile=
libdir=
bindir=
install=false
windowsdll=false
msvc=false
msvclibmode=false
libprefix=
libsuffix=
LIBS=
topdir=$(pwd)
tmpdir=$topdir/make-shared-from-static.$$
#trap "cd $topdir; rm -rf $tmpdir" 1 2 15
for arg
do
case "$1" in
--install)
install=true
shift
if [ $# -gt 0 ]; then
INSTALL="$1"
shift
else
echo "make-shared-from-static: expecting argument for --install option" 1>&2
exit 1
fi
;;
--windowsdll)
shift
windowsdll=true
;;
--msvc)
shift
msvc=true
;;
--bindir)
shift
if [ $# -gt 0 ]; then
bindir="$1"
shift
else
echo "make-shared-from-static: expecting argument for --bindir option" 1>&2
exit 1
fi
;;
--libdir)
shift
if [ $# -gt 0 ]; then
libdir="$1"
shift
else
echo "make-shared-from-static: expecting argument for --libdir option" 1>&2
exit 1
fi
;;
--ld)
shift
if [ $# -gt 0 ]; then
LD="$1"
shift
else
echo "make-shared-from-static: expecting argument for --ld option" 1>&2
exit 1
fi
;;
--ar)
shift
if [ $# -gt 0 ]; then
AR="$1"
shift
else
echo "make-shared-from-static: expecting argument for --ar option" 1>&2
exit 1
fi
;;
--libprefix)
shift
if [ $# -gt 0 ]; then
libprefix="$1"
shift
else
echo "make-shared-from-static: expecting argument for --libprefix option" 1>&2
exit 1
fi
;;
--libsuffix)
shift
if [ $# -gt 0 ]; then
libsuffix="$1"
shift
else
echo "make-shared-from-static: expecting argument for --libsuffix option" 1>&2
exit 1
fi
;;
-l*)
LIBS="$LIBS $1"
shift
;;
*.a)
if [ -z "$infile" ]; then
case "$1" in
/*)
infile="$1"
;;
*)
infile=$(pwd)/$1
;;
esac
shift
else
echo "make-shared-from-static: only one input file allowed" 1>&2
exit 1
fi
;;
esac
done
if [ -n "$infile" ]; then
base_infile=$(basename $infile)
if $windowsdll; then
if $msvc; then
base_name=`echo $base_infile | $SED -n -e 's/^lib\(.*\)\.a$/\1/p'`
outfile="${libprefix}${base_name}${libsuffix}.dll"
implibfile="$base_name.lib"
# Modern libtool won't create .a files, but will create directly .lib files.
# If the .a file does not exist, check for an existing .lib file.
if [ ! -f "$infile" ]; then
msvc_infiles="`echo $infile | $SED -e 's/\.a$/.lib/'` \
`dirname \"$infile\"`/`echo $base_infile | $SED -e 's/\.a$/.lib/' -e 's/^lib//'`"
for msvc_infile in $msvc_infiles; do
if [ -f "$msvc_infile" ]; then
infile="$msvc_infile"
msvclibmode=true
break
fi
done
fi
else
outfile=$(echo $base_infile | $SED 's/\.a$/.dll/')
implibfile="$outfile.a"
fi
else
outfile=$(echo $base_infile | $SED 's/\.a$/.so/')
fi
else
echo "make-shared-from-static: no input file specified" 1>&2
exit 1
fi
NM=nm
global_symbol_pipe="$SED -n -e 's/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*_\\([_A-Za-z][_A-iZa-z0-9]*\\)\\{0,1\\}\$/\\1 _\\2 \\2/p' | $SED '/ __gnu_lto/d'"
# Ignore DATA symbols for now. They should be be properly exported from
# the source code using dllexport. They can't be re-exported manually like
# this using MSVC.
#export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED -e '/^[BCDGRS][ ]/s/.*[ ]\\\\([^ ]*\\\\)/\\\\1,DATA/' | \$SED -e '/^[AITW][ ]/s/.*[ ]//' | sort | uniq >> \$export_symbols"
export_symbols_cmds="\$NM \$libobjs \$convenience | \$global_symbol_pipe | \$SED -e '/^[BCDGRS][ ]/d' | \$SED -e '/^[AITW][ ]/s/.*[ ]//' | sort | uniq >> \$export_symbols"
mkdir $tmpdir
(
cd $tmpdir
$msvclibmode || $AR x $infile
LIBDIR_ARGS=
if [ -n "$libdir" ]; then
LIBDIR_ARGS="-L$libdir"
fi
if $windowsdll; then
if $msvc; then
export_symbols="$base_name.def"
echo EXPORTS > $export_symbols
if $msvclibmode; then
libobjs="$infile"
else
libobjs="*.o"
fi
convenience=
eval cmd=\"$export_symbols_cmds\"
eval "$cmd"
link_args="-Wl,-def:$export_symbols $libobjs"
else
link_args="-Wl,--export-all-symbols -Wl,--enable-auto-import -Wl,--enable-auto-image-base *.o"
fi
set -x
$LD -shared $link_args -Wl,--out-implib="$implibfile" -o "$outfile" $LIBDIR_ARGS $LIBS
else
$LD -shared -o $outfile *.o $LIBDIR_ARGS $LIBS
fi
if $install; then
if $windowsdll; then
$INSTALL -d "$libdir"
$INSTALL -d "$bindir"
$INSTALL -m755 "$implibfile" "$libdir/$implibfile"
$INSTALL -m755 "$outfile" "$bindir/$outfile"
else
$INSTALL -d "$libdir"
$INSTALL -m755 "$outfile" "$libdir/$outfile"
fi
fi
)
rm -rf $tmpdir
|