Updated according to new way to build under BeOS.
[mesa.git] / bin / mklib
1 #!/bin/sh
2
3 # Make a shared library.
4 # Basically do a switch/case depending on the OS and make a shared (or static)
5 # library conforming to that OS.
6
7
8 # Usage:
9 # mklib [options] objects ...
10 # Options:
11 # -o LIBRARY specifies the name of resulting library
12 # ("-o GL" for example, might result in "libGL.so" being made)
13 # -major N specifies major version number (default is 1)
14 # -minor N specifies minor version number (default is 0)
15 # -patch N specifies patch version number (default is 0)
16 # -lLIBRARY specifies a dependency on LIBRARY
17 # -LDIR search in DIR for library dependencies
18 # -cplusplus link with C++ runtime
19 # -static make a static library (default is dynamic/shared)
20 # -install DIR move resulting library file(s) to DIR
21 # -arch ARCH override using `uname` to determine architecture
22 # -archopt OPT specify an extra achitecture-specific option OPT
23 # -noprefix don't prefix library name with "lib" or any suffix
24 #
25 # The library name should just be "GL" or "GLU", etc. The 'lib' prefix
26 # will be added here if needed, as well as the ".so" or ".a" suffix,
27 # etc (unless the -noprefix option is used).
28 #
29 # objects should be: foo.o bar.o etc.o
30 #
31 # Environment variables recognized:
32 # CC C compiler command
33 # CXX C++ compiler command
34 #
35
36
37 #
38 # Option defaults
39 #
40 LIBNAME=""
41 MAJOR=1
42 MINOR=0
43 PATCH=""
44 DEPS=""
45 CPLUSPLUS=0
46 STATIC=0
47 INSTALLDIR="."
48 ARCH="auto"
49 ARCHOPT=""
50 NOPREFIX=0
51
52
53 #
54 # Parse arguments
55 #
56 while true
57 do
58 case $1 in
59 '-o') shift 1; LIBNAME=$1;;
60 '-major') shift 1; MAJOR=$1;;
61 '-minor') shift 1; MINOR=$1;;
62 '-patch') shift 1; PATCH=$1;;
63 -l*) DEPS="$DEPS $1";;
64 -L*) DEPS="$DEPS $1";;
65 '-cplusplus') CPLUSPLUS=1;;
66 '-static') STATIC=1;;
67 '-install') shift 1; INSTALLDIR=$1;;
68 '-arch') shift 1; ARCH=$1;;
69 '-archopt') shift 1; ARCHOPT=$1;;
70 '-noprefix') NOPREFIX=1;;
71 -*) echo "mklib: Unknown option: " $1 ; exit 1;;
72 *) break
73 esac
74 shift 1
75 done
76 OBJECTS=$@
77
78 if [ ${ARCH} = "auto" ] ; then
79 ARCH=`uname`
80 fi
81
82
83 #
84 # Error checking
85 #
86 if [ "x${LIBNAME}" = "x" ] ; then
87 echo "mklib: Error: no library name specified"
88 exit 1
89 fi
90 if [ "x${OBJECTS}" = "x" ] ; then
91 echo "mklib: Error: no object files specified"
92 exit 1
93 fi
94
95
96 #
97 # Debugging info
98 #
99 if [ ] ; then
100 echo "-----------------"
101 echo ARCH is $ARCH
102 echo LIBNAME is $LIBNAME
103 echo MAJOR is $MAJOR
104 echo MINOR is $MINOR
105 echo PATCH is $PATCH
106 echo DEPS are $DEPS
107 echo "-----------------"
108 fi
109
110
111 #
112 # OK, make the library now
113 #
114 case $ARCH in
115
116 'Linux' | 'OpenBSD')
117 # GCC-based environment
118
119 if [ $NOPREFIX = 1 ] ; then
120 # No "lib" or ".so" part
121 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}
122 #OPTS="-shared -Wl,-soname,${LIBNAME}" # soname???
123 OPTS="-shared"
124 if [ $CPLUSPLUS = 1 ] ; then
125 LINK=$CXX
126 else
127 LINK=$CC
128 fi
129 rm -f ${LIBNAME}
130
131 # make lib
132 ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
133 # finish up
134 FINAL_LIBS="${LIBNAME}"
135 elif [ $STATIC = 1 ] ; then
136 LIBNAME="lib${LIBNAME}" # prefix with "lib"
137 echo "mklib: Making" $ARCH "static library: " ${LIBNAME}.a
138 LINK="ar"
139 OPTS="-ru"
140 # make lib
141 ${LINK} ${OPTS} ${LIBNAME}.a ${OBJECTS}
142 ranlib ${LIBNAME}.a
143 # finish up
144 FINAL_LIBS=${LIBNAME}.a
145 else
146 LIBNAME="lib${LIBNAME}" # prefix with "lib"
147 if [ $ARCH = 'Linux' ] ; then
148 OPTS="-Xlinker -Bsymbolic -shared -Wl,-soname,${LIBNAME}.so.${MAJOR}"
149 else
150 OPTS="-shared -Wl,-soname,${LIBNAME}.so.${MAJOR}"
151 fi
152 if [ x${PATCH} = "x" ] ; then
153 VERSION="${MAJOR}.${MINOR}"
154 else
155 VERSION="${MAJOR}.${MINOR}.${PATCH}"
156 fi
157
158 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}.so.${VERSION}
159
160 if [ $CPLUSPLUS = 1 ] ; then
161 LINK=$CXX
162 else
163 LINK=$CC
164 fi
165
166 # rm any old libs
167 rm -f ${LIBNAME}.so.${VERSION}
168 rm -f ${LIBNAME}.so.${MAJOR}
169 rm -f ${LIBNAME}.so
170
171 # make lib
172 ${LINK} ${OPTS} -o ${LIBNAME}.so.${VERSION} ${OBJECTS} ${DEPS}
173 # make usual symlinks
174 ln -s ${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR}
175 ln -s ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so
176 # finish up
177 FINAL_LIBS="${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so"
178 fi
179 ;;
180
181 'SunOS')
182 if [ $STATIC = 1 ] ; then
183 LIBNAME="lib${LIBNAME}.a"
184 echo "mklib: Making SunOS static library: " ${LIBNAME}
185 rm -f ${LIBNAME}
186 ar -ruv ${LIBNAME} ${OBJECTS}
187 FINAL_LIBS=${LIBNAME}
188 else
189 LIBNAME="lib${LIBNAME}.so"
190 echo "mklib: Making SunOS shared library: " ${LIBNAME}
191 # XXX OPTS for gcc should be -shared, but that doesn't work.
192 # Using -G does work though.
193 if [ $CPLUSPLUS = 1 ] ; then
194 # determine linker and options for C++ code
195 if [ "x${CXX}" = "xg++" ] ; then
196 # use g++
197 LINK="g++"
198 OPTS="-G"
199 elif [ "x${CXX}" = "xCC" ] ; then
200 # use Sun CC
201 LINK="CC"
202 OPTS="-G"
203 elif [ "x${CXX}" = "xc++" ] ; then
204 # use Sun c++
205 LINK="c++"
206 OPTS="-G"
207 elif [ `which c++` ] ; then
208 # use Sun c++
209 LINK="c++"
210 OPTS="-G"
211 elif [ `type g++` ] ; then
212 # use g++
213 LINK="g++"
214 OPTS="-G"
215 else
216 echo "mklib: warning: can't find C++ comiler, trying CC."
217 LINK="CC"
218 OPTS="-G"
219 fi
220 elif [ "x${CC}" = "xgcc" ] ; then
221 # use gcc for linking
222 LINK="gcc"
223 OPTS="-G"
224 else
225 # use native Sun linker
226 LINK="ld"
227 OPTS="-G"
228 fi
229 echo "mklib: linker is" ${LINK} ${OPTS}
230 rm -f ${LIBNAME}.${MAJOR} ${LIBNAME}
231 ${LINK} ${OPTS} -o ${LIBNAME}.${MAJOR} ${OBJECTS} ${DEPS}
232 ln -s ${LIBNAME}.${MAJOR} ${LIBNAME}
233 FINAL_LIBS="${LIBNAME}.${MAJOR} ${LIBNAME}"
234 fi
235 ;;
236
237 'FreeBSD')
238 if [ $NOPREFIX = 1 ] ; then
239 # No "lib" or ".so" part
240 echo "mklib: Making FreeBSD shared library: " ${LIBNAME}
241 rm -f ${LIBNAME}
242 ld -Bshareable -o ${LIBNAME} ${OBJECTS}
243 FINAL_LIBS=${LIBNAME}
244 elif [ $STATIC = 1 ] ; then
245 STLIB="lib${LIBNAME}.a"
246 echo "mklib: Making FreeBSD static library: " ${STLIB}
247 rm -f ${STLIB}
248 ar cq ${STLIB} ${OBJECTS}
249 ranlib ${STLIB}
250 FINAL_LIBS=${STLIB}
251 else
252 SHLIB="lib${LIBNAME}.so.${MAJOR}.${MINOR}"
253 echo "mklib: Making FreeBSD shared library: " ${SHLIB}
254 rm -f ${SHLIB}
255 ld -Bshareable -o ${SHLIB} ${OBJECTS}
256 # XXX make lib${LIBNAME}.so.${MAJOR} symlink?
257 FINAL_LIBS=${SHLIB}
258 fi
259 ;;
260
261 'NetBSD')
262 if [ $STATIC = 1 ] ; then
263 LIBNAME="lib${LIBNAME}_pic.a"
264 echo "mklib: Making NetBSD PIC static library: " ${LIBNAME}
265 rm -f ${LIBNAME}
266 ar cq ${LIBNAME} ${OBJECTS}
267 ranlib ${LIBNAME}
268 FINAL_LIBS=${LIBNAME}
269 else
270 LIBNAME="lib${LIBNAME}.so.${MAJOR}.${MINOR}"
271 echo "mklib: Making NetBSD PIC shared library: " ${LIBNAME}
272 rm -f ${LIBNAME}
273 ld -x -Bshareable -Bforcearchive -o ${LIBNAME} ${OBJECTS}
274 FINAL_LIBS=${LIBNAME}
275 fi
276 ;;
277
278 'IRIX' | 'IRIX64')
279 if [ $STATIC = 1 ] ; then
280 LIBNAME="lib${LIBNAME}.a"
281 rm -f ${LIBNAME}
282 ar rc ${LIBNAME} ${OBJECTS}
283 FINAL_LIBS=${LIBNAME}
284 else
285 LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so"
286 if [ $ARCHOPT = "64" ] ; then
287 # 64-bit ABI
288 OPTS="-64 -shared -all"
289 echo "mklib: Making IRIX 64-bit shared library: " ${LIBNAME}
290 elif [ $ARCHOPT = "o32" ] ; then
291 # old 32-bit ABI
292 OPTS="-32 -shared -all"
293 echo "mklib: Making IRIX o32-bit shared library: " ${LIBNAME}
294 else
295 # new 32-bit ABI
296 OPTS="-n32 -shared -all"
297 echo "mklib: Making IRIX n32-bit shared library: " ${LIBNAME}
298 fi
299 if [ $CPLUSPLUS = 1 ] ; then
300 LINK="CC"
301 else
302 LINK="ld"
303 fi
304 ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
305 FINAL_LIBS=${LIBNAME}
306 fi
307 ;;
308
309 'linux-cygwin')
310 LIBNAME="lib${LIBNAME}.a"
311 echo "mklib: Making linux-cygwin library: " ${LIBNAME}
312 rm -f ${LIBNAME}
313 gnuwin32ar ruv ${LIBNAME} ${OBJECTS}
314 FINAL_LIBS=${LIBNAME}
315 ;;
316
317 'HP-UX')
318 if [ $STATIC = 1 ] ; then
319 LIBNAME="lib${LIBNAME}.a"
320 echo "mklib: Making HP-UX static library: " ${LIBNAME}
321 rm -f ${LIBNAME}
322 ar -ruv ${LIBNAME} ${OBJECTS}
323 FINAL_LIBS=${LIBNAME}
324 else
325 RUNLIB="lib${LIBNAME}.${MAJOR}"
326 DEVLIB="lib${LIBNAME}.sl"
327 echo "mklib: Making HP-UX shared library: " ${RUNLIB} ${DEVLIB}
328 ld -b -o ${RUNLIB} +b ${RUNLIB} ${OBJECTS} ${DEPS}
329 ln -s ${RUNLIB} ${DEVLIB}
330 FINAL_LIBS="${RUNLIB} ${DEVLIB}"
331 fi
332 ;;
333
334 'AIX')
335 if [ $STATIC = 1 ] ; then
336 LIBNAME="lib${LIBNAME}.a"
337 echo "mklib: Making AIX static library: " ${LIBNAME}
338 ar -ruv ${LIBNAME} ${OBJECTS}
339 FINAL_LIBS=${LIBNAME}
340 else
341 EXPFILE="lib${LIBNAME}.exp"
342 OFILE=shr.o #Want to be consistent with the IBM libGL.a
343 LIBNAME="lib${LIBNAME}.a" # shared objects are still stored in the .a libraries
344 OPTS="-bE:${EXPFILE} -bM:SRE -bnoentry"
345 rm -f ${EXPFILE} ${OFILE}
346 NM="/bin/nm -eC"
347 echo "#! /usr/lib/${LIBNAME}" > ${EXPFILE}
348 ${NM} ${OBJECTS} | awk '{
349 if ((($2 == "T") || ($2 == "D") || ($2 == "B")) \
350 && ( substr($1,1,1) != ".")) {
351 if (substr ($1, 1, 7) != "__sinit" &&
352 substr ($1, 1, 7) != "__sterm") {
353 if (substr ($1, 1, 5) == "__tf1")
354 print (substr ($1, 7))
355 else if (substr ($1, 1, 5) == "__tf9")
356 print (substr ($1, 15))
357 else
358 print $1
359 }
360 }
361 }' | sort -u >> ${EXPFILE}
362 cc ${OPTS} -o ${OFILE} ${OBJECTS} ${DEPS}
363 ar -r ${LIBNAME} ${OFILE}
364 FINAL_LIBS="${LIBNAME}"
365 fi
366 ;;
367
368 'AIX64')
369 if [ $STATIC = 1 ] ; then
370 LIBNAME="lib${LIBNAME}.a"
371 echo "mklib: Making AIX static library: " ${LIBNAME}
372 ar -X64 -ruv ${LIBNAME} ${OBJECTS}
373 FINAL_LIBS=${LIBNAME}
374 else
375 echo "mklib: PROBLEM: AIX64 shared libs not supported!!!"
376 fi
377 ;;
378
379 'OpenSTEP')
380 LIBNAME="lib${LIBNAME}.a"
381 echo "mklib: Making OpenSTEP static library: " ${LIBNAME}
382 libtool -static -o ${LIBNAME} - ${OBJECTS}
383 FINAL_LIBS=${LIBNAME}
384 ;;
385
386 'OSF1')
387 if [ $STATIC = 1 ] ; then
388 LIBNAME="lib${LIBNAME}.a"
389 echo "mklib: Making OSF/1 static library: " ${LIBNAME}
390 rm -f ${LIBNAME}
391 ar -ruv ${LIBNAME} ${OBJECTS}
392 FINAL_LIBS=${LIBNAME}
393 else
394 VERSION="${MAJOR}.${MINOR}"
395 LIBNAME="lib${LIBNAME}.so"
396 echo "mklib: Making OSF/1 shared library: " ${LIBNAME}
397 rm -f ${LIBNAME}.${VERSION}
398 ld -o ${LIBNAME}.${VERSION} -shared -no_archive -set_version ${VERSION} -soname ${LIBNAME}.${VERSION} -expect_unresolved \* -all ${OBJECTS} ${DEPS}
399 ln -sf ${LIBNAME}.${VERSION} ${LIBNAME}
400 FINAL_LIBS="${LIBNAME} ${LIBNAME}.${VERSION}"
401 fi
402 ;;
403
404 'Darwin')
405 if [ $STATIC = 1 ] ; then
406 LIBNAME="lib${LIBNAME}.a"
407 echo "mklib: Making Darwin static library: " ${LIBNAME}
408 LINK="ar"
409 OPTS="-ruv"
410 ${LINK} ${OPTS} ${LIBNAME} ${OBJECTS}
411 FINAL_LIBS=${LIBNAME}
412 else
413 LIBNAME="${LIBNAME}.dylib"
414 echo "mklib: Making Darwin shared library: " ${LIBNAME}
415 FLAGS="-dynamiclib -multiply_defined suppress"
416 if [ $CPLUSPLUS = 1 ] ; then
417 LINK="g++"
418 else
419 LINK="cc"
420 fi
421 ${LINK} ${FLAGS} -o ${LIBNAME} ${OBJECTS} ${DEPS}
422 FINAL_LIBS=${LIBNAME}
423 fi
424 ;;
425
426 'LynxOS')
427 LIBNAME="lib${LIBNAME}.a"
428 echo "mklib: Making LynxOS static library: " ${LIBNAME}
429 rm -f ${LIBNAME}
430 ar ru ${LIBNAME} ${OBJECTS}
431 FINAL_LIBS=${LIBNAME}
432 ;;
433
434 'BeOS')
435 LIBNAME="lib${LIBNAME}.so"
436 echo "mklib: Making BeOS shared library: " ${LIBNAME}
437 gcc -nostart -Xlinker -soname=${LIBNAME} -L/Be/develop/lib/x86 ${OBJECTS} -lbe -o ${LIBNAME}
438 FINAL_LIBS=${LIBNAME}
439 ;;
440
441 'QNX')
442 LIBNAME="lib${LIBNAME}.a"
443 echo "mklib: Making QNX library: " ${LIBNAME}
444 wlib ${LIBNAME} ${OBJECTS}
445 FINAL_LIBS=${LIBNAME}
446 ;;
447
448 'MorphOS')
449 LIBNAME="lib${LIBNAME}.a"
450 echo "mklib: Making MorphOS library: " ${LIBNAME}
451 ppc-morphos-ar rc ${LIBNAME} ${OBJECTS}
452 FINAL_LIBS="${LIBNAME}"
453 ;;
454
455 'icc')
456 # Intel C compiler
457 LIBNAME="lib${LIBNAME}" # prefix with "lib"
458
459 if [ $STATIC = 1 ] ; then
460 echo "mklib: Making Intel ICC static library: " ${LIBNAME}.a
461 LINK="ar"
462 OPTS="-ruv"
463 # make lib
464 ${LINK} ${OPTS} ${LIBNAME}.a ${OBJECTS}
465 # finish up
466 FINAL_LIBS="${LIBNAME}.a"
467 else
468 OPTS="-shared"
469 VERSION="${MAJOR}.${MINOR}.${PATCH}"
470 echo "mklib: Making Intel ICC shared library: " ${LIBNAME}.so.${VERSION}
471
472 if [ $CPLUSPLUS = 1 ] ; then
473 LINK="icc"
474 else
475 LINK="icc"
476 fi
477 # rm any old libs
478 rm -f ${LIBNAME}.so.${VERSION}
479 rm -f ${LIBNAME}.so.${MAJOR}
480 rm -f ${LIBNAME}.so
481 # make lib
482 ${LINK} ${OPTS} -o ${LIBNAME}.so.${VERSION} ${OBJECTS} ${DEPS}
483 # make usual symlinks
484 ln -s ${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR}
485 ln -s ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so
486 # finish up
487 FINAL_LIBS="${LIBNAME}.so.${VERSION} ${LIBNAME}.so.${MAJOR} ${LIBNAME}.so"
488 fi
489 ;;
490
491 'aix-gcc')
492 # AIX with gcc
493 if [ $STATIC = 1 ] ; then
494 LIBNAME="lib${LIBNAME}.a"
495 echo "mklib: Making AIX GCC static library: " ${LIBNAME}
496 rm -f ${LIBNAME}
497 ar ru ${LIBNAME} ${OBJECTS}
498 FINAL_LIBS=${LIBNAME}
499 else
500 LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so"
501 echo "mklib: Making AIX GCC shared library: " ${LIBNAME}
502 # remove old lib
503 rm -f ${LIBNAME}
504 # make the lib
505 gcc -shared -Wl,-G ${OBJECTS} ${DEPS} -o ${LIBNAME}
506 # NOTE: the application linking with this library must specify
507 # the -Wl,-brtl flags to gcc
508 FINAL_LIBS=${LIBNAME}
509 fi
510 ;;
511
512 'ultrix')
513 # XXX untested
514 if [ $STATIC = 0 ] ; then
515 echo "mklib: Warning shared libs not supported on Ultrix"
516 fi
517 LIBNAME="lib${LIBNAME}.a"
518 echo "mklib: Making static library for Ultrix: " ${LIBNAME}
519 rm -f ${LIBNAME}
520 ar ru ${LIBNAME} ${OBJECTS}
521 FINAL_LIBS="${LIBNAME}"
522 ;;
523
524 CYGWIN*)
525 # GCC-based environment
526 CYGNAME="cyg${LIBNAME}" # prefix with "cyg"
527 LIBNAME="lib${LIBNAME}" # prefix with "lib"
528
529 if [ $STATIC = 1 ] ; then
530 echo "mklib: Making" $ARCH "static library: " ${LIBNAME}.a
531 LINK="ar"
532 OPTS="-ru"
533 # make lib
534 ${LINK} ${OPTS} ${LIBNAME}.a ${OBJECTS}
535 ranlib ${LIBNAME}.a
536 # finish up
537 FINAL_LIBS=${LIBNAME}.a
538 else
539 OPTS="-shared -Wl,-export-all -Wl,--out-implib=${LIBNAME}-${MAJOR}.dll.a"
540 echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}-${MAJOR}.dll
541
542 if [ $CPLUSPLUS = 1 ] ; then
543 LINK="g++"
544 else
545 LINK="gcc"
546 fi
547
548 # rm any old libs
549 rm -f ${LIBNAME}-${MAJOR}.dll
550 rm -f ${LIBNAME}.dll.a
551 rm -f ${LIBNAME}.a
552
553 # make lib
554 ${LINK} ${OPTS} -o ${CYGNAME}-${MAJOR}.dll ${OBJECTS} ${DEPS}
555 # make usual symlinks
556 ln -s ${LIBNAME}-${MAJOR}.dll.a ${LIBNAME}.dll.a
557 # finish up
558 FINAL_LIBS="${LIBNAME}-${MAJOR}.dll.a ${LIBNAME}.dll.a"
559 # special case for installing in bin
560 FINAL_BINS="${CYGNAME}-${MAJOR}.dll"
561 fi
562 ;;
563
564 'example')
565 # If you're adding support for a new architecture, you can
566 # start with this:
567 if [ $STATIC = 1 ] ; then
568 LIBNAME="lib${LIBNAME}.a"
569 echo "mklib: Making static library for example arch: " ${LIBNAME}
570 rm -f ${LIBNAME}
571 ar rv ${LIBNAME} ${OBJECTS}
572 FINAL_LIBS="${LIBNAME}"
573 else
574 LIBNAME="lib${LIBNAME}.so" # prefix with "lib"
575 echo "mklib: Making shared library for example arch: " ${LIBNAME}
576 ld -o ${LIBNAME} ${OBJECTS} ${DEPS}
577 FINAL_LIBS="${LIBNAME}"
578 fi
579 ;;
580
581 *)
582 echo "mklib: ERROR: Don't know how to make a static/shared library for" ${ARCH}
583 echo "mklib: Please add necessary commands to mklib script."
584 ;;
585 esac
586
587
588 #
589 # Put library files into installation directory if specified.
590 #
591 if [ ${INSTALLDIR} != "." ] ; then
592 echo "mklib: Installing" ${FINAL_LIBS} "in" ${INSTALLDIR}
593 mv ${FINAL_LIBS} ${INSTALLDIR}/
594 fi