Big rename fest of engine DSO names, from libFOO.so to FOO.so
[openssl.git] / Makefile.shared
1 #
2 # Helper makefile to link shared libraries in a portable way.
3 # This is much simpler than libtool, and hopefully not too error-prone.
4 #
5 # The following variables need to be set on the command line to build
6 # properly
7
8 # CC contains the current compiler.  This one MUST be defined
9 CC=cc
10 CFLAGS=$(CFLAG)
11 # LDFLAGS contains flags to be used when temporary object files (when building
12 # shared libraries) are created, or when an application is linked.
13 # SHARED_LDFLAGS contains flags to be used when the shared library is created.
14 LDFLAGS=$(LDFLAG)
15 SHARED_LDFLAGS=$(SHARED_LDFLAG)
16
17 # SHARED_RCFLAGS are flags used with windres, i.e. when build for Cygwin
18 # or Mingw.
19 SHARED_RCFLAGS=$(SHARED_RCFLAG)
20
21 NM=nm
22
23 # LIBNAME contains just the name of the library, without prefix ("lib"
24 # on Unix, "cyg" for certain forms under Cygwin...) or suffix (.a, .so,
25 # .dll, ...).  This one MUST have a value when using this makefile to
26 # build shared libraries.
27 # For example, to build libfoo.so, you need to do the following:
28 #LIBNAME=foo
29 LIBNAME=
30
31 # APPNAME contains just the name of the application, without suffix (""
32 # on Unix, ".exe" on Windows, ...).  This one MUST have a value when using
33 # this makefile to build applications.
34 # For example, to build foo, you need to do the following:
35 #APPNAME=foo
36 APPNAME=
37
38 # DSTDIR is the directory where the built file should end up in.
39 DSTDIR=.
40
41 # SRCDIR is the top directory of the source tree.
42 SRCDIR=.
43
44 # OBJECTS contains all the object files to link together into the application.
45 # This must contain at least one object file.
46 #OBJECTS=foo.o
47 OBJECTS=
48
49 # LIBEXTRAS contains extra modules to link together with the library.
50 # For example, if a second library, say libbar.a needs to be linked into
51 # libfoo.so, you need to do the following:
52 #LIBEXTRAS=libbar.a
53 # Note that this MUST be used when using the link_dso targets, to hold the
54 # names of all object files that go into the target shared object.
55 LIBEXTRAS=
56
57 # LIBVERSION contains the current version of the library.
58 # For example, to build libfoo.so.1.2, you need to do the following:
59 #LIBVERSION=1.2
60 LIBVERSION=
61
62 # LIBCOMPATVERSIONS contains the compatibility versions (a list) of
63 # the library.  They MUST be in decreasing order.
64 # For example, if libfoo.so.1.2.1 is backward compatible with libfoo.so.1.2
65 # and libfoo.so.1, you need to do the following:
66 #LIBCOMPATVERSIONS=1.2 1
67 # Note that on systems that use sonames, the last number will appear as
68 # part of it.
69 # It's also possible, for systems that support it (Tru64, for example),
70 # to add extra compatibility info with more precision, by adding a second
71 # list of versions, separated from the first with a semicolon, like this:
72 #LIBCOMPATVERSIONS=1.2 1;1.2.0 1.1.2 1.1.1 1.1.0 1.0.0
73 LIBCOMPATVERSIONS=
74
75 # LIBDEPS contains all the flags necessary to cover all necessary
76 # dependencies to other libraries.
77 LIBDEPS=
78
79 #------------------------------------------------------------------------------
80 # The rest is private to this makefile.
81
82 SET_X=:
83 #SET_X=set -x
84
85 top:
86         echo "Trying to use this makefile interactively?  Don't."
87
88 CALC_VERSIONS=  \
89         SHLIB_COMPAT=; SHLIB_SOVER=; \
90         if [ -n "$(LIBVERSION)$(LIBCOMPATVERSIONS)" ]; then \
91                 prev=""; \
92                 for v in `echo "$(LIBVERSION) $(LIBCOMPATVERSIONS)" | cut -d';' -f1`; do \
93                         SHLIB_SOVER_NODOT=$$v; \
94                         SHLIB_SOVER=.$$v; \
95                         if [ -n "$$prev" ]; then \
96                                 SHLIB_COMPAT="$$SHLIB_COMPAT .$$prev"; \
97                         fi; \
98                         prev=$$v; \
99                 done; \
100         fi
101
102 LINK_APP=       \
103   ( $(SET_X);   \
104     LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
105     LDCMD="$${LDCMD:-$(CC)}"; LDFLAGS="$${LDFLAGS:-$(CFLAGS) $(LDFLAGS)}"; \
106     LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
107     LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
108     echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
109         $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS}; \
110     LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
111     $${LDCMD} $${LDFLAGS} -o $${APPNAME:=$(APPNAME)} $(OBJECTS) $${LIBDEPS} )
112
113 LINK_SO=        \
114   ( $(SET_X);   \
115     LIBDEPS="$${LIBDEPS:-$(LIBDEPS)}"; \
116     SHAREDCMD="$${SHAREDCMD:-$(CC)}"; \
117     SHAREDFLAGS="$${SHAREDFLAGS:-$(CFLAGS) $(SHARED_LDFLAGS)}"; \
118     LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
119     LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
120     echo LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
121          $${SHAREDCMD} $${SHAREDFLAGS} \
122              -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
123              $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS; \
124     LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
125     $${SHAREDCMD} $${SHAREDFLAGS} \
126         -o $(DSTDIR)/$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
127         $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
128   ) && $(SYMLINK_SO)
129
130 SYMLINK_SO=     \
131         if [ -n "$$INHIBIT_SYMLINKS" ]; then :; else \
132                 prev=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
133                 if [ -n "$$SHLIB_COMPAT" ]; then \
134                         for x in $$SHLIB_COMPAT; do \
135                                 ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX; \
136                                   ln -s $$prev $(DSTDIR)/$$SHLIB$$x$$SHLIB_SUFFIX ); \
137                                 prev=$$SHLIB$$x$$SHLIB_SUFFIX; \
138                         done; \
139                 fi; \
140                 if [ -n "$$SHLIB_SOVER" ]; then \
141                         ( $(SET_X); rm -f $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX; \
142                           ln -s $$prev $(DSTDIR)/$$SHLIB$$SHLIB_SUFFIX ); \
143                 fi; \
144         fi
145
146 LINK_SO_SHLIB=  SHOBJECTS="$(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS)"; $(LINK_SO)
147 LINK_SO_DSO=    INHIBIT_SYMLINKS=yes; SHOBJECTS="$(LIBEXTRAS)"; $(LINK_SO)
148
149 LINK_SO_SHLIB_VIA_O=    \
150   SHOBJECTS=$(DSTDIR)/lib$(LIBNAME).o; \
151   ALL=$$ALLSYMSFLAGS; ALLSYMSFLAGS=; NOALLSYMSFLAGS=; \
152   ( echo ld $(LDFLAGS) -r -o $$SHOBJECTS.o $$ALL lib$(LIBNAME).a $(LIBEXTRAS); \
153     ld $(LDFLAGS) -r -o $$SHOBJECTS.o $$ALL $(DSTDIR)/lib$(LIBNAME).a $(LIBEXTRAS) ); \
154   $(LINK_SO) && ( echo rm -f $$SHOBJECTS; rm -f $$SHOBJECTS )
155
156 LINK_SO_SHLIB_UNPACKED= \
157   UNPACKDIR=link_tmp.$$$$; rm -rf $$UNPACKDIR; mkdir $$UNPACKDIR; \
158   (cd $$UNPACKDIR; ar x ../$(DSTDIR)/lib$(LIBNAME).a) && \
159   ([ -z "$(LIBEXTRAS)" ] || cp $(LIBEXTRAS) $$UNPACKDIR) && \
160   SHOBJECTS=$$UNPACKDIR/*.o; \
161   $(LINK_SO) && rm -rf $$UNPACKDIR
162
163 DETECT_GNU_LD=($(CC) -Wl,-V /dev/null 2>&1 | grep '^GNU ld' )>/dev/null
164
165 DO_GNU_SO_NOCALC=\
166         SHLIB=$(LIBNAME).so; \
167         SHLIB_SUFFIX=; \
168         ALLSYMSFLAGS='-Wl,--whole-archive'; \
169         NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
170         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-Bsymbolic -Wl,-soname=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"
171 DO_GNU_SO=$(CALC_VERSIONS); $(DO_GNU_SO_NOCALC); SHLIB=lib$$SHLIB
172 DO_GNU_APP=LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-rpath,$(LIBRPATH)"
173
174 #This is rather special.  It's a special target with which one can link
175 #applications without bothering with any features that have anything to
176 #do with shared libraries, for example when linking against static
177 #libraries.  It's mostly here to avoid a lot of conditionals everywhere
178 #else...
179 link_app.:
180         $(LINK_APP)
181
182 link_dso.gnu:
183         @ $(DO_GNU_SO_NOCALC); $(LINK_SO_DSO)
184 link_shlib.gnu:
185         @ $(DO_GNU_SO); $(LINK_SO_SHLIB)
186 link_app.gnu:
187         @ $(DO_GNU_APP); $(LINK_APP)
188
189 link_shlib.linux-shared:
190         @$(PERL) $(SRCDIR)/util/mkdef.pl $(LIBNAME) linux >$(LIBNAME).map; \
191         $(DO_GNU_SO); \
192         ALLSYMSFLAGS='-Wl,--whole-archive,--version-script=$(LIBNAME).map'; \
193         $(LINK_SO_SHLIB)
194
195 link_dso.bsd:
196         @if $(DETECT_GNU_LD); then $(DO_GNU_SO_NOCALC); else \
197         SHLIB=$(LIBNAME).so; \
198         SHLIB_SUFFIX=; \
199         LIBDEPS=" "; \
200         ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
201         NOALLSYMSFLAGS=; \
202         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
203         fi; $(LINK_SO_DSO)
204 link_shlib.bsd:
205         @if $(DETECT_GNU_LD); then $(DO_GNU_SO); else \
206         $(CALC_VERSIONS); \
207         SHLIB=lib$(LIBNAME).so; \
208         SHLIB_SUFFIX=; \
209         LIBDEPS=" "; \
210         ALLSYMSFLAGS="-Wl,-Bforcearchive"; \
211         NOALLSYMSFLAGS=; \
212         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -nostdlib"; \
213         fi; $(LINK_SO_SHLIB)
214 link_app.bsd:
215         @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
216         LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-rpath,$(LIBPATH)"; \
217         fi; $(LINK_APP)
218
219 # For Darwin AKA Mac OS/X (dyld)
220 # Originally link_dso.darwin produced .so, because it was hard-coded
221 # in dso_dlfcn module. At later point dso_dlfcn switched to .dylib
222 # extension in order to allow for run-time linking with vendor-
223 # supplied shared libraries such as libz, so that link_dso.darwin had
224 # to be harmonized with it. This caused minor controversy, because
225 # it was believed that dlopen can't be used to dynamically load
226 # .dylib-s, only so called bundle modules (ones linked with -bundle
227 # flag). The belief seems to be originating from pre-10.4 release,
228 # where dlfcn functionality was emulated by dlcompat add-on. In
229 # 10.4 dlopen was rewritten as native part of dyld and is documented
230 # to be capable of loading both dynamic libraries and bundles. In
231 # order to provide compatibility with pre-10.4 dlopen, modules are
232 # linked with -bundle flag, which makes .dylib extension misleading.
233 # It works, because dlopen is [and always was] extension-agnostic.
234 # Alternative to this heuristic approach is to develop specific
235 # MacOS X dso module relying on whichever "native" dyld interface.
236 link_dso.darwin:
237         @ SHLIB=$(LIBNAME); \
238         SHLIB_SUFFIX=.dylib; \
239         ALLSYMSFLAGS='-all_load'; \
240         NOALLSYMSFLAGS=''; \
241         SHAREDFLAGS="$(CFLAGS) `echo $(SHARED_LDFLAGS) | sed s/dynamiclib/bundle/`"; \
242         $(LINK_SO_DSO)
243 link_shlib.darwin:
244         @ $(CALC_VERSIONS); \
245         SHLIB=lib$(LIBNAME); \
246         SHLIB_SUFFIX=.dylib; \
247         ALLSYMSFLAGS='-all_load'; \
248         NOALLSYMSFLAGS=''; \
249         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS)"; \
250         if [ -n "$(LIBVERSION)" ]; then \
251                 SHAREDFLAGS="$$SHAREDFLAGS -current_version $(LIBVERSION)"; \
252         fi; \
253         if [ -n "$$SHLIB_SOVER_NODOT" ]; then \
254                 SHAREDFLAGS="$$SHAREDFLAGS -compatibility_version $$SHLIB_SOVER_NODOT"; \
255         fi; \
256         SHAREDFLAGS="$$SHAREDFLAGS -install_name $(INSTALLTOP)/$(LIBDIR)/$$SHLIB$(SHLIB_EXT)"; \
257         $(LINK_SO_SHLIB)
258 link_app.darwin:        # is there run-path on darwin?
259         $(LINK_APP)
260
261 link_dso.cygwin:
262         @SHLIB=$(LIBNAME); \
263         SHLIB_SUFFIX=.dll; \
264         ALLSYMSFLAGS='-Wl,--whole-archive'; \
265         NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
266         base=-Wl,--enable-auto-image-base; \
267         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic"; \
268         $(LINK_SO_DSO)
269 #for mingw target if def-file is in use dll-name should match library-name
270 link_shlib.cygwin:
271         @ $(CALC_VERSIONS); \
272         INHIBIT_SYMLINKS=yes; \
273         SHLIB=cyg$(LIBNAME); SHLIB_SOVER=-$(LIBVERSION); SHLIB_SUFFIX=.dll; \
274         dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; extras=; \
275         base=-Wl,--enable-auto-image-base; \
276         if expr $(PLATFORM) : 'mingw' > /dev/null; then \
277                 case $(LIBNAME) in \
278                         crypto) SHLIB=libeay;; \
279                         ssl) SHLIB=ssleay;; \
280                 esac; \
281                 SHLIB_SOVER=32; \
282                 extras="$(LIBNAME).def"; \
283                 $(PERL) $(SRCDIR)/util/mkdef.pl 32 $$SHLIB > $$extras; \
284                 base=; [ $(LIBNAME) = "crypto" ] && base=-Wl,--image-base,0x63000000; \
285         fi; \
286         dll_name=$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX; \
287         echo "$(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name |" \
288                      "$(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o"; \
289         $(PERL) $(SRCDIR)/util/mkrc.pl $$dll_name | \
290                 $(CROSS_COMPILE)windres $(SHARED_RCFLAGS) -o rc.o; \
291         extras="$$extras rc.o"; \
292         ALLSYMSFLAGS='-Wl,--whole-archive'; \
293         NOALLSYMSFLAGS='-Wl,--no-whole-archive'; \
294         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared $$base -Wl,-Bsymbolic -Wl,--out-implib,lib$(LIBNAME).dll.a $$extras"; \
295         $(LINK_SO_SHLIB) || exit 1; \
296         rm $$extras
297 link_app.cygwin:
298         $(LINK_APP)
299
300 link_dso.alpha-osf1:
301         @ if $(DETECT_GNU_LD); then \
302                 $(DO_GNU_SO_NOCALC); \
303         else \
304                 SHLIB=$(LIBNAME).so; \
305                 SHLIB_SUFFIX=; \
306                 ALLSYMSFLAGS='-all'; \
307                 NOALLSYMSFLAGS='-none'; \
308                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-B,symbolic"; \
309         fi; \
310         $(LINK_SO_DSO)
311 link_shlib.alpha-osf1:
312         @ if $(DETECT_GNU_LD); then \
313                 $(DO_GNU_SO); \
314         else \
315                 SHLIB=lib$(LIBNAME).so; \
316                 SHLIB_SUFFIX=; \
317                 SHLIB_HIST=`echo "$(LIBCOMPATVERSIONS)" | cut -d';' -f2 | sed -e 's/ */:/'`; \
318                 if [ -n "$$SHLIB_HIST" ]; then \
319                         SHLIB_HIST="$${SHLIB_HIST}:$(LIBVERSION)"; \
320                 else \
321                         SHLIB_HIST="$(LIBVERSION)"; \
322                 fi; \
323                 SHLIB_SOVER=; \
324                 ALLSYMSFLAGS='-all'; \
325                 NOALLSYMSFLAGS='-none'; \
326                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-B,symbolic"; \
327                 if [ -n "$$SHLIB_HIST" ]; then \
328                         SHAREDFLAGS="$$SHAREDFLAGS -set_version $$SHLIB_HIST"; \
329                 fi; \
330         fi; \
331         $(LINK_SO_SHLIB)
332 link_app.alpha-osf1:
333         @if $(DETECT_GNU_LD); then \
334                 $(DO_GNU_APP); \
335         else \
336                 LDFLAGS="$(CFLAGS) $(LDFLAGS) -rpath $(LIBRPATH)"; \
337         fi; \
338         $(LINK_APP)
339
340 link_dso.solaris:
341         @ if $(DETECT_GNU_LD); then \
342                 $(DO_GNU_SO_NOCALC); \
343         else \
344                 $(CALC_VERSIONS); \
345                 SHLIB=lib$(LIBNAME).so; \
346                 SHLIB_SUFFIX=; \
347                 ALLSYMSFLAGS="-Wl,-z,allextract"; \
348                 NOALLSYMSFLAGS="-Wl,-z,defaultextract"; \
349                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
350         fi; \
351         $(LINK_SO_DSO)
352 link_shlib.solaris:
353         @ if $(DETECT_GNU_LD); then \
354                 $(DO_GNU_SO); \
355         else \
356                 $(CALC_VERSIONS); \
357                 SHLIB=lib$(LIBNAME).so; \
358                 SHLIB_SUFFIX=;\
359                 $(PERL) $(SRCDIR)/util/mkdef.pl $(LIBNAME) linux >$(LIBNAME).map; \
360                 ALLSYMSFLAGS="-Wl,-z,allextract,-M,$(LIBNAME).map"; \
361                 NOALLSYMSFLAGS="-Wl,-z,defaultextract"; \
362                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX -Wl,-Bsymbolic"; \
363         fi; \
364         $(LINK_SO_SHLIB)
365 link_app.solaris:
366         @ if $(DETECT_GNU_LD); then \
367                 $(DO_GNU_APP); \
368         else \
369                 LDFLAGS="$(CFLAGS) $(LDFLAGS) -R $(LIBRPATH)"; \
370         fi; \
371         $(LINK_APP)
372
373 # OpenServer 5 native compilers used
374 link_dso.svr3:
375         @ if $(DETECT_GNU_LD); then \
376                 $(DO_GNU_SO_NOCALC); \
377         else \
378                 $(CALC_VERSIONS); \
379                 SHLIB=$(LIBNAME).so; \
380                 SHLIB_SUFFIX=; \
381                 ALLSYMSFLAGS=''; \
382                 NOALLSYMSFLAGS=''; \
383                 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SUFFIX"; \
384         fi; \
385         $(LINK_SO_DSO)
386 link_shlib.svr3:
387         @ if $(DETECT_GNU_LD); then \
388                 $(DO_GNU_SO); \
389         else \
390                 $(CALC_VERSIONS); \
391                 SHLIB=lib$(LIBNAME).so; \
392                 SHLIB_SUFFIX=; \
393                 ALLSYMSFLAGS=''; \
394                 NOALLSYMSFLAGS=''; \
395                 SHAREDFLAGS="$(CFLAGS) -G -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
396         fi; \
397         $(LINK_SO_SHLIB_UNPACKED)
398 link_app.svr3:
399         @$(DETECT_GNU_LD) && $(DO_GNU_APP); \
400         $(LINK_APP)
401
402 # UnixWare 7 and OpenUNIX 8 native compilers used
403 link_dso.svr5:
404         @ if $(DETECT_GNU_LD); then \
405                 $(DO_GNU_SO_NOCALC); \
406         else \
407                 SHARE_FLAG='-G'; \
408                 ($(CC) -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
409                 SHLIB=$(LIBNAME).so; \
410                 SHLIB_SUFFIX=; \
411                 ALLSYMSFLAGS=''; \
412                 NOALLSYMSFLAGS=''; \
413                 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SUFFIX"; \
414         fi; \
415         $(LINK_SO_DSO)
416 link_shlib.svr5:
417         @ if $(DETECT_GNU_LD); then \
418                 $(DO_GNU_SO); \
419         else \
420                 $(CALC_VERSIONS); \
421                 SHARE_FLAG='-G'; \
422                 ($(CC) -v 2>&1 | grep gcc) > /dev/null && SHARE_FLAG='-shared'; \
423                 SHLIB=lib$(LIBNAME).so; \
424                 SHLIB_SUFFIX=; \
425                 ALLSYMSFLAGS=''; \
426                 NOALLSYMSFLAGS=''; \
427                 SHAREDFLAGS="$(CFLAGS) $${SHARE_FLAG} -h $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX"; \
428         fi; \
429         $(LINK_SO_SHLIB_UNPACKED)
430 link_app.svr5:
431         @$(DETECT_GNU_LD) && $(DO_GNU_APP); \
432         $(LINK_APP)
433
434 link_dso.irix:
435         @ if $(DETECT_GNU_LD); then \
436                 $(DO_GNU_SO_NOCALC); \
437         else \
438                 SHLIB=$(LIBNAME).so; \
439                 SHLIB_SUFFIX=; \
440                 MINUSWL=""; \
441                 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSWL="-Wl,"; \
442                 ALLSYMSFLAGS="$${MINUSWL}-all"; \
443                 NOALLSYMSFLAGS="$${MINUSWL}-none"; \
444                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SUFFIX,-B,symbolic"; \
445         fi; \
446         $(LINK_SO_DSO)
447 link_shlib.irix:
448         @ if $(DETECT_GNU_LD); then \
449                 $(DO_GNU_SO); \
450         else \
451                 $(CALC_VERSIONS); \
452                 SHLIB=lib$(LIBNAME).so; \
453                 SHLIB_SUFFIX=; \
454                 MINUSWL=""; \
455                 ($(CC) -v 2>&1 | grep gcc) > /dev/null && MINUSWL="-Wl,"; \
456                 ALLSYMSFLAGS="$${MINUSWL}-all"; \
457                 NOALLSYMSFLAGS="$${MINUSWL}-none"; \
458                 SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -shared -Wl,-soname,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX,-B,symbolic"; \
459         fi; \
460         $(LINK_SO_SHLIB)
461 link_app.irix:
462         @LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-rpath,$(LIBRPATH)"; \
463         $(LINK_APP)
464
465 # 32-bit PA-RISC HP-UX embeds the -L pathname of libs we link with, so
466 # we compensate for it with +cdp ../: and +cdp ./:. Yes, these rewrite
467 # rules imply that we can only link one level down in catalog structure,
468 # but that's what takes place for the moment of this writing. +cdp option
469 # was introduced in HP-UX 11.x and applies in 32-bit PA-RISC link
470 # editor context only [it's simply ignored in other cases, which are all
471 # ELFs by the way].
472 #
473 link_dso.hpux:
474         @if $(DETECT_GNU_LD); then $(DO_GNU_SO_NOCALC); else \
475         SHLIB=$(LIBNAME).sl; \
476         expr "$(CFLAGS)" : '.*DSO_DLFCN' > /dev/null && SHLIB=lib$(LIBNAME).so; \
477         SHLIB_SUFFIX=; \
478         ALLSYMSFLAGS='-Wl,-Fl'; \
479         NOALLSYMSFLAGS=''; \
480         expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
481         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SUFFIX,+cdp,../:,+cdp,./:"; \
482         fi; \
483         rm -f $$SHLIB$$SHLIB_SUFFIX || :; \
484         $(LINK_SO_DSO) && chmod a=rx $$SHLIB$$SHLIB_SUFFIX
485 link_shlib.hpux:
486         @if $(DETECT_GNU_LD); then $(DO_GNU_SO); else \
487         $(CALC_VERSIONS); \
488         SHLIB=lib$(LIBNAME).sl; \
489         expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
490         SHLIB_SUFFIX=; \
491         ALLSYMSFLAGS='-Wl,-Fl'; \
492         NOALLSYMSFLAGS=''; \
493         expr $(PLATFORM) : 'hpux64' > /dev/null && ALLSYMSFLAGS='-Wl,+forceload'; \
494         SHAREDFLAGS="$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-B,symbolic,+vnocompatwarnings,-z,+s,+h,$$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX,+cdp,../:,+cdp,./:"; \
495         fi; \
496         rm -f $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX || :; \
497         $(LINK_SO_SHLIB) && chmod a=rx $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX
498 link_app.hpux:
499         @if $(DETECT_GNU_LD); then $(DO_GNU_APP); else \
500         LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,+s,+cdp,../:,+cdp,./:,+b,$(LIBRPATH)"; \
501         fi; \
502         $(LINK_APP)
503
504 link_dso.aix:
505         @OBJECT_MODE=`expr "x$(SHARED_LDFLAGS)" : 'x\-[a-z]*\(64\)'` || :; \
506         OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
507         SHLIB=$(LIBNAME).so; \
508         SHLIB_SUFFIX=; \
509         ALLSYMSFLAGS=''; \
510         NOALLSYMSFLAGS=''; \
511         SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-bexpall,-bnolibpath,-bM:SRE'; \
512         $(LINK_SO_DSO);
513 link_shlib.aix:
514         @ $(CALC_VERSIONS); \
515         OBJECT_MODE=`expr "x$(SHARED_LDFLAGS)" : 'x\-[a-z]*\(64\)'` || : ; \
516         OBJECT_MODE=$${OBJECT_MODE:-32}; export OBJECT_MODE; \
517         SHLIB=lib$(LIBNAME).so; \
518         SHLIB_SUFFIX=; \
519         ALLSYMSFLAGS='-bnogc'; \
520         NOALLSYMSFLAGS=''; \
521         SHAREDFLAGS='$(CFLAGS) $(SHARED_LDFLAGS) -Wl,-bexpall,-bnolibpath,-bM:SRE'; \
522         $(LINK_SO_SHLIB_VIA_O)
523 link_app.aix:
524         LDFLAGS="$(CFLAGS) $(LDFLAGS) -Wl,-brtl,-blibpath:$(LIBRPATH):$${LIBPATH:-/usr/lib:/lib}"; \
525         $(LINK_APP)
526
527
528 # Targets to build symbolic links when needed
529 symlink.gnu symlink.solaris symlink.svr3 symlink.svr5 symlink.irix \
530 symlink.aix:
531         @ $(CALC_VERSIONS); \
532         SHLIB=lib$(LIBNAME).so; \
533         $(SYMLINK_SO)
534 symlink.darwin:
535         @ $(CALC_VERSIONS); \
536         SHLIB=lib$(LIBNAME); \
537         SHLIB_SUFFIX=.dylib; \
538         $(SYMLINK_SO)
539 symlink.hpux:
540         @ $(CALC_VERSIONS); \
541         SHLIB=lib$(LIBNAME).sl; \
542         expr $(PLATFORM) : '.*ia64' > /dev/null && SHLIB=lib$(LIBNAME).so; \
543         $(SYMLINK_SO)
544 # The following lines means those specific architectures do no symlinks
545 symlink.cygwin symlink.alpha-osf1 symlink.tru64 symlink.tru64-rpath:
546
547 # Compatibility targets
548 link_dso.bsd-gcc-shared link_dso.linux-shared link_dso.gnu-shared: link_dso.gnu
549 link_shlib.bsd-gcc-shared link_shlib.gnu-shared: link_shlib.gnu
550 link_app.bsd-gcc-shared link_app.linux-shared link_app.gnu-shared: link_app.gnu
551 symlink.bsd-gcc-shared symlink.bsd-shared symlink.linux-shared symlink.gnu-shared: symlink.gnu
552 link_dso.bsd-shared: link_dso.bsd
553 link_shlib.bsd-shared: link_shlib.bsd
554 link_app.bsd-shared: link_app.bsd
555 link_dso.darwin-shared: link_dso.darwin
556 link_shlib.darwin-shared: link_shlib.darwin
557 link_app.darwin-shared: link_app.darwin
558 symlink.darwin-shared: symlink.darwin
559 link_dso.cygwin-shared: link_dso.cygwin
560 link_shlib.cygwin-shared: link_shlib.cygwin
561 link_app.cygwin-shared: link_app.cygwin
562 symlink.cygwin-shared: symlink.cygwin
563 link_dso.alpha-osf1-shared: link_dso.alpha-osf1
564 link_shlib.alpha-osf1-shared: link_shlib.alpha-osf1
565 link_app.alpha-osf1-shared: link_app.alpha-osf1
566 symlink.alpha-osf1-shared: symlink.alpha-osf1
567 link_dso.tru64-shared: link_dso.tru64
568 link_shlib.tru64-shared: link_shlib.tru64
569 link_app.tru64-shared: link_app.tru64
570 symlink.tru64-shared: symlink.tru64
571 link_dso.tru64-shared-rpath: link_dso.tru64-rpath
572 link_shlib.tru64-shared-rpath: link_shlib.tru64-rpath
573 link_app.tru64-shared-rpath: link_app.tru64-rpath
574 symlink.tru64-shared-rpath: symlink.tru64-rpath
575 link_dso.solaris-shared: link_dso.solaris
576 link_shlib.solaris-shared: link_shlib.solaris
577 link_app.solaris-shared: link_app.solaris
578 symlink.solaris-shared: symlink.solaris
579 link_dso.svr3-shared: link_dso.svr3
580 link_shlib.svr3-shared: link_shlib.svr3
581 link_app.svr3-shared: link_app.svr3
582 symlink.svr3-shared: symlink.svr3
583 link_dso.svr5-shared: link_dso.svr5
584 link_shlib.svr5-shared: link_shlib.svr5
585 link_app.svr5-shared: link_app.svr5
586 symlink.svr5-shared: symlink.svr5
587 link_dso.irix-shared: link_dso.irix
588 link_shlib.irix-shared: link_shlib.irix
589 link_app.irix-shared: link_app.irix
590 symlink.irix-shared: symlink.irix
591 link_dso.hpux-shared: link_dso.hpux
592 link_shlib.hpux-shared: link_shlib.hpux
593 link_app.hpux-shared: link_app.hpux
594 symlink.hpux-shared: symlink.hpux
595 link_dso.aix-shared: link_dso.aix
596 link_shlib.aix-shared: link_shlib.aix
597 link_app.aix-shared: link_app.aix
598 symlink.aix-shared: symlink.aix