Attempt to fix libGL on FreeBSD, where the library was being built without any
[mesa.git] / bin / mklib
1 #!/bin/sh
2
3 # Make a shared library.
4 # This script should be useful for projects other than Mesa.
5 # Improvements/fixes are welcome.
6
7
8 # Copyright (C) 1999-2005 Brian Paul All Rights Reserved.
9 #
10 # Permission is hereby granted, free of charge, to any person obtaining a
11 # copy of this software and associated documentation files (the "Software"),
12 # to deal in the Software without restriction, including without limitation
13 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
14 # and/or sell copies of the Software, and to permit persons to whom the
15 # Software is furnished to do so, subject to the following conditions:
16 #
17 # The above copyright notice and this permission notice shall be included
18 # in all copies or substantial portions of the Software.
19 #
20 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 # BRIAN PAUL BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
24 # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
25 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26
27
28 #
29 # Option defaults
30 #
31 LIBNAME=""
32 MAJOR=1
33 MINOR=0
34 PATCH=""
35 DEPS=""
36 LINK=""
37 CPLUSPLUS=0
38 STATIC=0
39 INSTALLDIR="."
40 ARCH="auto"
41 ARCHOPT=""
42 NOPREFIX=0
43 EXPORTS=""
44
45
46 #
47 # Parse arguments
48 #
49 while true
50 do
51 case $1 in
52 '-h' | '--help')
53 echo 'Usage: mklib [options] objects'
54 echo 'Create a shared library from object files.'
55 echo ' -o LIBRARY specifies the name of the resulting library, without'
56 echo ' the leading "lib" or any suffix.'
57 echo ' (eg: "-o GL" might result in "libGL.so" being made)'
58 echo ' -major N specifies major version number (default is 1)'
59 echo ' -minor N specifies minor version number (default is 0)'
60 echo ' -patch N specifies patch version number (default is 0)'
61 echo ' -lLIBRARY specifies a dependency on LIBRARY'
62 echo ' -LDIR search in DIR for library dependencies'
63 echo ' -linker L explicity specify the linker program to use (eg: gcc, g++)'
64 echo ' Not observed on all systems at this time.'
65 echo ' -cplusplus link with C++ runtime'
66 echo ' -static make a static library (default is dynamic/shared)'
67 echo ' -install DIR put resulting library file(s) in DIR'
68 echo ' -arch ARCH override using `uname` to determine host system'
69 echo ' -archopt OPT specify an extra achitecture-specific option OPT'
70 echo " -noprefix don't prefix library name with 'lib' nor add any suffix"
71 echo ' -exports FILE only export the symbols listed in FILE'
72 echo ' -h, --help display this information and exit'
73 exit 1
74 ;;
75 '-o')
76 shift 1;
77 LIBNAME=$1
78 ;;
79 '-major')
80 shift 1;
81 MAJOR=$1
82 ;;
83 '-minor')
84 shift 1;
85 MINOR=$1
86 ;;
87 '-patch')
88 shift 1;
89 PATCH=$1
90 ;;
91 '-linker')
92 shift 1;
93 LINK=$1
94 ;;
95 -l*)
96 DEPS="$DEPS $1"
97 ;;
98 -L*)
99 DEPS="$DEPS $1"
100 ;;
101 '-cplusplus')
102 CPLUSPLUS=1
103 ;;
104 '-static')
105 STATIC=1
106 ;;
107 '-install')
108 shift 1;
109 INSTALLDIR=$1
110 ;;
111 '-arch')
112 shift 1;
113 ARCH=$1
114 ;;
115 '-archopt')
116 shift 1;
117 ARCHOPT=$1
118 ;;
119 '-noprefix')
120 NOPREFIX=1
121 ;;
122 '-exports')
123 shift 1;
124 EXPORTS=$1
125 ;;
126 -*)
127 echo "mklib: Unknown option: " $1 ;
128 exit 1
129 ;;
130 *)
131 # This should be the first object file, stop parsing
132 break
133 esac
134 shift 1
135 done
136 OBJECTS=$@
137
138
139 if [ ${ARCH} = "auto" ] ; then
140 ARCH=`uname`
141 fi
142
143
144 #
145 # Error checking
146 #
147 if [ "x${LIBNAME}" = "x" ] ; then
148 echo "mklib: Error: no library name specified"
149 exit 1
150 fi
151 if [ "x${OBJECTS}" = "x" ] ; then
152 echo "mklib: Error: no object files specified"
153 exit 1
154 fi
155
156
157 #
158 # Debugging info
159 #
160 if [ ] ; then
161 echo "-----------------"
162 echo ARCH is $ARCH
163 echo LIBNAME is $LIBNAME
164 echo MAJOR is $MAJOR
165 echo MINOR is $MINOR
166 echo PATCH is $PATCH
167 echo DEPS are $DEPS
168 echo "EXPORTS in" $EXPORTS
169 echo "-----------------"
170 fi
171
172
173 #
174 # OK, make the library now
175 #
176 case $ARCH in
177
178 'Linux' | 'OpenBSD')
179 # we assume gcc
180
181 if [ "x$LINK" = "x" ] ; then
182 # -linker was not specified so set default link command now
183 if [ $CPLUSPLUS = 1 ] ; then
184 LINK=g++
185 else
186 LINK=gcc
187 fi
188 fi
189
190 if [ $NOPREFIX = 1 ] ; then
191 # No "lib" or ".so" part
192 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}
193 #OPTS="-shared -Wl,-soname,${LIBNAME}" # soname???
194 OPTS="-shared"
195
196 # Check if objects are 32-bit and we're running in 64-bit
197 # environment. If so, pass -m32 flag to linker.
198 set ${OBJECTS}
199 ABI32=`file $1 | grep 32-bit`
200 if [ "${ABI32}" -a `uname -m` = "x86_64" ] ; then
201 OPTS="-m32 ${OPTS}"
202 fi
203
204 rm -f ${LIBNAME}
205 # make lib
206 ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
207 # finish up
208 FINAL_LIBS="${LIBNAME}"
209 elif [ $STATIC = 1 ] ; then
210 LIBNAME="lib${LIBNAME}" # prefix with "lib"
211 echo "mklib: Making" $ARCH "static library: " ${LIBNAME}.a
212 rm -f ${LIBNAME}.a
213 ar -ru ${LIBNAME}.a ${OBJECTS}
214 ranlib ${LIBNAME}.a
215 # finish up
216 FINAL_LIBS=${LIBNAME}.a
217 else
218 LIBNAME="lib${LIBNAME}" # prefix with "lib"
219 if [ $ARCH = 'Linux' ] ; then
220 OPTS="-Xlinker -Bsymbolic -shared -Wl,-soname,${LIBNAME}.so.${MAJOR}"
221 else
222 OPTS="-shared -Wl,-soname,${LIBNAME}.so.${MAJOR}"
223 fi
224 if [ $EXPORTS ] ; then
225 #OPTS="${OPTS} -Xlinker --retain-symbols-file ${EXPORTS}"
226 # Make the 'exptmp' file for --version-script option
227 echo "VERSION_${MAJOR}.${MINOR} {" > exptmp
228 echo "global:" >> exptmp
229 sed 's/$/;/' ${EXPORTS} >> exptmp
230 echo "local:" >> exptmp
231 echo "*;" >> exptmp
232 echo "};" >> exptmp
233 OPTS="${OPTS} -Xlinker --version-script=exptmp"
234 # exptmp is removed below
235 fi
236
237 # Check if objects are 32-bit and we're running in 64-bit
238 # environment. If so, pass -m32 flag to linker.
239 set ${OBJECTS}
240 ABI32=`file $1 | grep 32-bit`
241 if [ "${ABI32}" -a `uname -m` = "x86_64" ] ; then
242 OPTS="-m32 ${OPTS}"
243 fi
244
245 if [ x${PATCH} = "x" ] ; then
246 VERSION="${MAJOR}.${MINOR}"
247 else
248 VERSION="${MAJOR}.${MINOR}.${PATCH}"
249 fi
250
251 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}.so.${VERSION}
252
253 # rm any old libs
254 rm -f ${LIBNAME}.so.${VERSION}
255 rm -f ${LIBNAME}.so.${MAJOR}
256 rm -f ${LIBNAME}.so
257
258 # make lib
259 ${LINK} ${OPTS} -o ${LIBNAME}.so.${VERSION} ${OBJECTS} ${DEPS}
260 # make usual symlinks
261 ln -s ${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR}
262 ln -s ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so
263 # finish up
264 FINAL_LIBS="${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so"
265 # rm -f exptmp
266 fi
267 ;;
268
269 'SunOS')
270 if [ $STATIC = 1 ] ; then
271 LIBNAME="lib${LIBNAME}.a"
272 echo "mklib: Making SunOS static library: " ${LIBNAME}
273 rm -f ${LIBNAME}
274 ar -ruv ${LIBNAME} ${OBJECTS}
275 FINAL_LIBS=${LIBNAME}
276 else
277 LIBNAME="lib${LIBNAME}.so"
278 echo "mklib: Making SunOS shared library: " ${LIBNAME}
279 # XXX OPTS for gcc should be -shared, but that doesn't work.
280 # Using -G does work though.
281 OPTS="-G"
282 if [ "x$LINK" = "x" ] ; then
283 # -linker was not specified, choose default linker now
284 if [ $CPLUSPLUS = 1 ] ; then
285 # determine linker and options for C++ code
286 if [ `which c++` ] ; then
287 # use Sun c++
288 LINK="c++"
289 elif [ `type g++` ] ; then
290 # use g++
291 LINK="g++"
292 else
293 echo "mklib: warning: can't find C++ comiler, trying CC."
294 LINK="CC"
295 fi
296 else
297 # use native Sun linker for C code
298 LINK="ld"
299 fi
300 fi
301 echo "mklib: linker is" ${LINK} ${OPTS}
302 rm -f ${LIBNAME}.${MAJOR} ${LIBNAME}
303 ${LINK} ${OPTS} -o ${LIBNAME}.${MAJOR} ${OBJECTS} ${DEPS}
304 ln -s ${LIBNAME}.${MAJOR} ${LIBNAME}
305 FINAL_LIBS="${LIBNAME}.${MAJOR} ${LIBNAME}"
306 fi
307 ;;
308
309 'FreeBSD')
310 # we assume gcc
311
312 if [ "x$LINK" = "x" ] ; then
313 # -linker was not specified so set default link command now
314 if [ $CPLUSPLUS = 1 ] ; then
315 LINK=g++
316 else
317 LINK=gcc
318 fi
319 fi
320
321 if [ $NOPREFIX = 1 ] ; then
322 # No "lib" or ".so" part
323 echo "mklib: Making FreeBSD shared library: " ${LIBNAME}
324 OPTS="-shared"
325 rm -f ${LIBNAME}
326 ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
327 FINAL_LIBS=${LIBNAME}
328 elif [ $STATIC = 1 ] ; then
329 STLIB="lib${LIBNAME}.a"
330 echo "mklib: Making FreeBSD static library: " ${STLIB}
331 rm -f ${STLIB}
332 ar cq ${STLIB} ${OBJECTS}
333 ranlib ${STLIB}
334 FINAL_LIBS=${STLIB}
335 else
336 SHLIB="lib${LIBNAME}.so.${MAJOR}"
337 OPTS="-shared -Wl,-soname,${SHLIB}"
338 echo "mklib: Making FreeBSD shared library: " ${SHLIB}
339 rm -f ${SHLIB}
340 ${LINK} ${OPTS} -o ${SHLIB} ${OBJECTS} ${DEPS}
341 FINAL_LIBS=${SHLIB}
342 fi
343 ;;
344
345 'NetBSD')
346 if [ $STATIC = 1 ] ; then
347 LIBNAME="lib${LIBNAME}_pic.a"
348 echo "mklib: Making NetBSD PIC static library: " ${LIBNAME}
349 rm -f ${LIBNAME}
350 ar cq ${LIBNAME} ${OBJECTS}
351 ranlib ${LIBNAME}
352 FINAL_LIBS=${LIBNAME}
353 else
354 LIBNAME="lib${LIBNAME}.so.${MAJOR}.${MINOR}"
355 echo "mklib: Making NetBSD PIC shared library: " ${LIBNAME}
356 rm -f ${LIBNAME}
357 ld -x -Bshareable -Bforcearchive -o ${LIBNAME} ${OBJECTS}
358 FINAL_LIBS=${LIBNAME}
359 fi
360 ;;
361
362 'IRIX' | 'IRIX64')
363 if [ $STATIC = 1 ] ; then
364 LIBNAME="lib${LIBNAME}.a"
365 rm -f ${LIBNAME}
366 ar rc ${LIBNAME} ${OBJECTS}
367 FINAL_LIBS=${LIBNAME}
368 else
369 LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so"
370 # XXX we should run 'file' on the first object file to determine
371 # if it's o32, n32 or 64 format, as we do for Linux above.
372 if [ $ARCHOPT = "64" ] ; then
373 # 64-bit ABI
374 OPTS="-64 -shared -all"
375 echo "mklib: Making IRIX 64-bit shared library: " ${LIBNAME}
376 elif [ $ARCHOPT = "o32" ] ; then
377 # old 32-bit ABI
378 OPTS="-32 -shared -all"
379 echo "mklib: Making IRIX o32-bit shared library: " ${LIBNAME}
380 else
381 # new 32-bit ABI
382 OPTS="-n32 -shared -all"
383 echo "mklib: Making IRIX n32-bit shared library: " ${LIBNAME}
384 fi
385 if [ $CPLUSPLUS = 1 ] ; then
386 LINK="CC"
387 else
388 LINK="ld"
389 fi
390 ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
391 FINAL_LIBS=${LIBNAME}
392 fi
393 ;;
394
395 'linux-cygwin')
396 LIBNAME="lib${LIBNAME}.a"
397 echo "mklib: Making linux-cygwin library: " ${LIBNAME}
398 rm -f ${LIBNAME}
399 gnuwin32ar ruv ${LIBNAME} ${OBJECTS}
400 FINAL_LIBS=${LIBNAME}
401 ;;
402
403 'HP-UX')
404 if [ $STATIC = 1 ] ; then
405 LIBNAME="lib${LIBNAME}.a"
406 echo "mklib: Making HP-UX static library: " ${LIBNAME}
407 rm -f ${LIBNAME}
408 ar -ruv ${LIBNAME} ${OBJECTS}
409 FINAL_LIBS=${LIBNAME}
410 else
411 RUNLIB="lib${LIBNAME}.${MAJOR}"
412 DEVLIB="lib${LIBNAME}.sl"
413 echo "mklib: Making HP-UX shared library: " ${RUNLIB} ${DEVLIB}
414 ld -b -o ${RUNLIB} +b ${RUNLIB} ${OBJECTS} ${DEPS}
415 ln -s ${RUNLIB} ${DEVLIB}
416 FINAL_LIBS="${RUNLIB} ${DEVLIB}"
417 fi
418 ;;
419
420 'AIX' | 'AIX64')
421 if [ $ARCH = "AIX64" ] ; then
422 X64="-X64"
423 fi
424
425 if [ $STATIC = 1 ] ; then
426 LIBNAME="lib${LIBNAME}.a"
427 echo "mklib: Making AIX static library: " ${LIBNAME}
428 rm -f ${LIBNAME}
429 ar -ruv ${X64} ${LIBNAME} ${OBJECTS}
430 FINAL_LIBS=${LIBNAME}
431 else
432 EXPFILE="lib${LIBNAME}.exp"
433 OFILE=shr.o #Want to be consistent with the IBM libGL.a
434 LIBNAME="lib${LIBNAME}.a" # shared objects are still stored in the .a libraries
435 if [ $ARCH = "AIX64" ] ; then
436 OPTS="-bE:${EXPFILE} -bM:SRE -bnoentry -q64"
437 else
438 OPTS="-bE:${EXPFILE} -bM:SRE -bnoentry"
439 fi
440 rm -f ${EXPFILE} ${OFILE}
441 NM="/bin/nm -eC ${X64}"
442 echo "#! /usr/lib/${LIBNAME}" > ${EXPFILE}
443 ${NM} ${OBJECTS} | awk '{
444 if ((($2 == "T") || ($2 == "D") || ($2 == "B")) \
445 && ( substr($1,1,1) != ".")) {
446 if (substr ($1, 1, 7) != "__sinit" &&
447 substr ($1, 1, 7) != "__sterm") {
448 if (substr ($1, 1, 5) == "__tf1")
449 print (substr ($1, 7))
450 else if (substr ($1, 1, 5) == "__tf9")
451 print (substr ($1, 15))
452 else
453 print $1
454 }
455 }
456 }' | sort -u >> ${EXPFILE}
457 cc ${OPTS} -o ${OFILE} ${OBJECTS} ${DEPS}
458 ar ${X64} -r ${LIBNAME} ${OFILE}
459 FINAL_LIBS="${LIBNAME}"
460 fi
461 ;;
462
463 'OpenSTEP')
464 LIBNAME="lib${LIBNAME}.a"
465 echo "mklib: Making OpenSTEP static library: " ${LIBNAME}
466 libtool -static -o ${LIBNAME} - ${OBJECTS}
467 FINAL_LIBS=${LIBNAME}
468 ;;
469
470 'OSF1')
471 if [ $STATIC = 1 ] ; then
472 LIBNAME="lib${LIBNAME}.a"
473 echo "mklib: Making OSF/1 static library: " ${LIBNAME}
474 rm -f ${LIBNAME}
475 ar -ruv ${LIBNAME} ${OBJECTS}
476 FINAL_LIBS=${LIBNAME}
477 else
478 VERSION="${MAJOR}.${MINOR}"
479 LIBNAME="lib${LIBNAME}.so"
480 echo "mklib: Making OSF/1 shared library: " ${LIBNAME}
481 if [ "x$LINK" = "x" ] ; then
482 if [ $CPLUSPLUS = 1 ] ; then
483 LINK=cxx
484 else
485 LINK=cc
486 fi
487 fi
488 rm -f ${LIBNAME}.${VERSION}
489 ${LINK} -o ${LIBNAME}.${VERSION} -shared -set_version ${VERSION} -soname ${LIBNAME}.${VERSION} -expect_unresolved \* -all ${OBJECTS} ${DEPS}
490 ln -sf ${LIBNAME}.${VERSION} ${LIBNAME}
491 FINAL_LIBS="${LIBNAME} ${LIBNAME}.${VERSION}"
492 fi
493 ;;
494
495 'Darwin')
496 if [ $STATIC = 1 ] ; then
497 LIBNAME="lib${LIBNAME}.a"
498 echo "mklib: Making Darwin static library: " ${LIBNAME}
499 LINK="ar"
500 OPTS="-ruv"
501 ${LINK} ${OPTS} ${LIBNAME} ${OBJECTS}
502 FINAL_LIBS=${LIBNAME}
503 else
504 LIBNAME="lib${LIBNAME}.dylib"
505 echo "mklib: Making Darwin shared library: " ${LIBNAME}
506 FLAGS="-dynamiclib -multiply_defined suppress"
507 if [ $CPLUSPLUS = 1 ] ; then
508 LINK="g++"
509 else
510 LINK="cc"
511 fi
512 ${LINK} ${FLAGS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
513 FINAL_LIBS=${LIBNAME}
514 fi
515 ;;
516
517 'LynxOS')
518 LIBNAME="lib${LIBNAME}.a"
519 echo "mklib: Making LynxOS static library: " ${LIBNAME}
520 rm -f ${LIBNAME}
521 ar ru ${LIBNAME} ${OBJECTS}
522 FINAL_LIBS=${LIBNAME}
523 ;;
524
525 'BeOS')
526 if [ $STATIC = 1 ] ; then
527 LIBNAME="lib${LIBNAME}.a"
528 echo "mklib: Making BeOS static library: " ${LIBNAME}
529 ar -cru "${LIBNAME}" ${OBJECTS}
530 else
531 LIBNAME="lib${LIBNAME}.so"
532 echo "mklib: Making BeOS shared library: " ${LIBNAME}
533 gcc -nostart -Xlinker "-soname=${LIBNAME}" -L/Be/develop/lib/x86 -lbe ${DEPS} ${OBJECTS} -o "${LIBNAME}"
534 mimeset -f "${LIBNAME}"
535 # XXX remove the Mesa3D stuff here since mklib isn't mesa-specific.
536 setversion "${LIBNAME}" -app ${MAJOR} ${MINOR} ${PATCH} -short "Powered by Mesa3D!" -long "Powered by Mesa3D!"
537 fi
538 FINAL_LIBS=${LIBNAME}
539 ;;
540
541 'QNX')
542 LIBNAME="lib${LIBNAME}.a"
543 echo "mklib: Making QNX library: " ${LIBNAME}
544 wlib ${LIBNAME} ${OBJECTS}
545 FINAL_LIBS=${LIBNAME}
546 ;;
547
548 'MorphOS')
549 LIBNAME="lib${LIBNAME}.a"
550 echo "mklib: Making MorphOS library: " ${LIBNAME}
551 ppc-morphos-ar rc ${LIBNAME} ${OBJECTS}
552 FINAL_LIBS="${LIBNAME}"
553 ;;
554
555 'icc')
556 # Intel C compiler
557 # This should get merged into the Linux code, above, since this isn't
558 # really a different architecture.
559 LIBNAME="lib${LIBNAME}" # prefix with "lib"
560
561 if [ $STATIC = 1 ] ; then
562 echo "mklib: Making Intel ICC static library: " ${LIBNAME}.a
563 LINK="ar"
564 OPTS="-ruv"
565 # make lib
566 ${LINK} ${OPTS} ${LIBNAME}.a ${OBJECTS}
567 # finish up
568 FINAL_LIBS="${LIBNAME}.a"
569 else
570 OPTS="-shared"
571 VERSION="${MAJOR}.${MINOR}.${PATCH}"
572 echo "mklib: Making Intel ICC shared library: " ${LIBNAME}.so.${VERSION}
573
574 if [ $CPLUSPLUS = 1 ] ; then
575 LINK="icc"
576 else
577 LINK="icc"
578 fi
579 # rm any old libs
580 rm -f ${LIBNAME}.so.${VERSION}
581 rm -f ${LIBNAME}.so.${MAJOR}
582 rm -f ${LIBNAME}.so
583 # make lib
584 ${LINK} ${OPTS} -o ${LIBNAME}.so.${VERSION} ${OBJECTS} ${DEPS}
585 # make usual symlinks
586 ln -s ${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR}
587 ln -s ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so
588 # finish up
589 FINAL_LIBS="${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so"
590 fi
591 ;;
592
593 'aix-gcc')
594 # AIX with gcc
595 if [ $STATIC = 1 ] ; then
596 LIBNAME="lib${LIBNAME}.a"
597 echo "mklib: Making AIX GCC static library: " ${LIBNAME}
598 rm -f ${LIBNAME}
599 ar ru ${LIBNAME} ${OBJECTS}
600 FINAL_LIBS=${LIBNAME}
601 else
602 LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so"
603 echo "mklib: Making AIX GCC shared library: " ${LIBNAME}
604 # remove old lib
605 rm -f ${LIBNAME}
606 # make the lib
607 gcc -shared -Wl,-G ${OBJECTS} ${DEPS} -o ${LIBNAME}
608 # NOTE: the application linking with this library must specify
609 # the -Wl,-brtl flags to gcc
610 FINAL_LIBS=${LIBNAME}
611 fi
612 ;;
613
614 'ultrix')
615 # XXX untested
616 if [ $STATIC = 0 ] ; then
617 echo "mklib: Warning shared libs not supported on Ultrix"
618 fi
619 LIBNAME="lib${LIBNAME}.a"
620 echo "mklib: Making static library for Ultrix: " ${LIBNAME}
621 rm -f ${LIBNAME}
622 ar ru ${LIBNAME} ${OBJECTS}
623 FINAL_LIBS="${LIBNAME}"
624 ;;
625
626 CYGWIN*)
627 # GCC-based environment
628 CYGNAME="cyg${LIBNAME}" # prefix with "cyg"
629 LIBNAME="lib${LIBNAME}" # prefix with "lib"
630
631 if [ $STATIC = 1 ] ; then
632 echo "mklib: Making" $ARCH "static library: " ${LIBNAME}.a
633 LINK="ar"
634 OPTS="-ru"
635 # make lib
636 ${LINK} ${OPTS} ${LIBNAME}.a ${OBJECTS}
637 ranlib ${LIBNAME}.a
638 # finish up
639 FINAL_LIBS=${LIBNAME}.a
640 else
641 OPTS="-shared -Wl,-export-all -Wl,--out-implib=${LIBNAME}-${MAJOR}.dll.a"
642 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}-${MAJOR}.dll
643
644 if [ $CPLUSPLUS = 1 ] ; then
645 LINK="g++"
646 else
647 LINK="gcc"
648 fi
649
650 # rm any old libs
651 rm -f ${LIBNAME}-${MAJOR}.dll
652 rm -f ${LIBNAME}.dll.a
653 rm -f ${LIBNAME}.a
654
655 # make lib
656 ${LINK} ${OPTS} -o ${CYGNAME}-${MAJOR}.dll ${OBJECTS} ${DEPS}
657 # make usual symlinks
658 ln -s ${LIBNAME}-${MAJOR}.dll.a ${LIBNAME}.dll.a
659 # finish up
660 FINAL_LIBS="${LIBNAME}-${MAJOR}.dll.a ${LIBNAME}.dll.a"
661 # special case for installing in bin
662 FINAL_BINS="${CYGNAME}-${MAJOR}.dll"
663 fi
664 ;;
665
666 'example')
667 # If you're adding support for a new architecture, you can
668 # start with this:
669 if [ $STATIC = 1 ] ; then
670 LIBNAME="lib${LIBNAME}.a"
671 echo "mklib: Making static library for example arch: " ${LIBNAME}
672 rm -f ${LIBNAME}
673 ar rv ${LIBNAME} ${OBJECTS}
674 FINAL_LIBS="${LIBNAME}"
675 else
676 LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so"
677 echo "mklib: Making shared library for example arch: " ${LIBNAME}
678 ld -o ${LIBNAME} ${OBJECTS} ${DEPS}
679 FINAL_LIBS="${LIBNAME}"
680 fi
681 ;;
682
683 *)
684 echo "mklib: ERROR: Don't know how to make a static/shared library for" ${ARCH}
685 echo "mklib: Please add necessary commands to mklib script."
686 ;;
687 esac
688
689
690 #
691 # Put library files into installation directory if specified.
692 #
693 if [ ${INSTALLDIR} != "." ] ; then
694 echo "mklib: Installing" ${FINAL_LIBS} "in" ${INSTALLDIR}
695 mv ${FINAL_LIBS} ${INSTALLDIR}/
696 fi