Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | # Make a shared library. |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 4 | # This script should be useful for projects other than Mesa. |
| 5 | # Improvements/fixes are welcome. |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 6 | |
| 7 | |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 8 | # Copyright (C) 1999-2005 Brian Paul All Rights Reserved. |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 9 | # |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 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: |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 16 | # |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 17 | # The above copyright notice and this permission notice shall be included |
| 18 | # in all copies or substantial portions of the Software. |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 19 | # |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 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 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 28 | # |
| 29 | # Option defaults |
| 30 | # |
| 31 | LIBNAME="" |
| 32 | MAJOR=1 |
| 33 | MINOR=0 |
Brian Paul | 6e450f2 | 2004-02-21 18:08:41 +0000 | [diff] [blame] | 34 | PATCH="" |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 35 | DEPS="" |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 36 | LINK="" |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 37 | CPLUSPLUS=0 |
| 38 | STATIC=0 |
| 39 | INSTALLDIR="." |
| 40 | ARCH="auto" |
| 41 | ARCHOPT="" |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 42 | NOPREFIX=0 |
Brian Paul | 158a251 | 2004-10-16 15:10:45 +0000 | [diff] [blame] | 43 | EXPORTS="" |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 44 | |
| 45 | |
| 46 | # |
| 47 | # Parse arguments |
| 48 | # |
| 49 | while true |
| 50 | do |
| 51 | case $1 in |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 52 | '-h' | '--help') |
Eric Anholt | f1a2613 | 2005-08-08 03:26:18 +0000 | [diff] [blame] | 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' |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 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 |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 133 | esac |
| 134 | shift 1 |
| 135 | done |
| 136 | OBJECTS=$@ |
| 137 | |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 138 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 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 |
Brian Paul | 158a251 | 2004-10-16 15:10:45 +0000 | [diff] [blame] | 168 | echo "EXPORTS in" $EXPORTS |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 169 | echo "-----------------" |
| 170 | fi |
| 171 | |
| 172 | |
| 173 | # |
| 174 | # OK, make the library now |
| 175 | # |
| 176 | case $ARCH in |
| 177 | |
Brian Paul | 12d6cae | 2004-01-10 22:12:21 +0000 | [diff] [blame] | 178 | 'Linux' | 'OpenBSD') |
Brian Paul | 158a251 | 2004-10-16 15:10:45 +0000 | [diff] [blame] | 179 | # we assume gcc |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 180 | |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 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 |
Brian Paul | c498742 | 2004-10-16 15:02:16 +0000 | [diff] [blame] | 188 | fi |
| 189 | |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 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" |
Ian Romanick | aba4864 | 2005-08-08 23:22:46 +0000 | [diff] [blame] | 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 | |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 204 | rm -f ${LIBNAME} |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 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" |
Brian Paul | 5b9a9d4 | 2004-01-17 18:31:12 +0000 | [diff] [blame] | 211 | echo "mklib: Making" $ARCH "static library: " ${LIBNAME}.a |
Brian Paul | 7a534dc | 2005-09-14 02:18:09 +0000 | [diff] [blame] | 212 | rm -f ${LIBNAME}.a |
| 213 | ar -ru ${LIBNAME}.a ${OBJECTS} |
Brian Paul | 6e450f2 | 2004-02-21 18:08:41 +0000 | [diff] [blame] | 214 | ranlib ${LIBNAME}.a |
Brian Paul | 1c4b711 | 2003-10-10 17:58:38 +0000 | [diff] [blame] | 215 | # finish up |
Brian Paul | 6e450f2 | 2004-02-21 18:08:41 +0000 | [diff] [blame] | 216 | FINAL_LIBS=${LIBNAME}.a |
Brian Paul | 1c4b711 | 2003-10-10 17:58:38 +0000 | [diff] [blame] | 217 | else |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 218 | LIBNAME="lib${LIBNAME}" # prefix with "lib" |
Brian Paul | 5b9a9d4 | 2004-01-17 18:31:12 +0000 | [diff] [blame] | 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 |
Brian Paul | 158a251 | 2004-10-16 15:10:45 +0000 | [diff] [blame] | 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 |
Brian Paul | 3e19618 | 2005-03-03 01:38:13 +0000 | [diff] [blame] | 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 | |
Brian Paul | 6e450f2 | 2004-02-21 18:08:41 +0000 | [diff] [blame] | 245 | if [ x${PATCH} = "x" ] ; then |
| 246 | VERSION="${MAJOR}.${MINOR}" |
| 247 | else |
| 248 | VERSION="${MAJOR}.${MINOR}.${PATCH}" |
| 249 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 250 | |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 251 | echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}.so.${VERSION} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 252 | |
Brian Paul | 1c4b711 | 2003-10-10 17:58:38 +0000 | [diff] [blame] | 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" |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 265 | # rm -f exptmp |
Brian Paul | 1c4b711 | 2003-10-10 17:58:38 +0000 | [diff] [blame] | 266 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 267 | ;; |
| 268 | |
| 269 | 'SunOS') |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 270 | if [ $STATIC = 1 ] ; then |
| 271 | LIBNAME="lib${LIBNAME}.a" |
| 272 | echo "mklib: Making SunOS static library: " ${LIBNAME} |
| 273 | rm -f ${LIBNAME} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 274 | ar -ruv ${LIBNAME} ${OBJECTS} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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. |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 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 |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 296 | else |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 297 | # use native Sun linker for C code |
| 298 | LINK="ld" |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 299 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 300 | fi |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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}" |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 306 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 307 | ;; |
| 308 | |
| 309 | 'FreeBSD') |
Eric Anholt | b83435f | 2005-10-18 23:36:40 +0000 | [diff] [blame^] | 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 | |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 321 | if [ $NOPREFIX = 1 ] ; then |
| 322 | # No "lib" or ".so" part |
| 323 | echo "mklib: Making FreeBSD shared library: " ${LIBNAME} |
Eric Anholt | b83435f | 2005-10-18 23:36:40 +0000 | [diff] [blame^] | 324 | OPTS="-shared" |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 325 | rm -f ${LIBNAME} |
Eric Anholt | b83435f | 2005-10-18 23:36:40 +0000 | [diff] [blame^] | 326 | ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS} |
Brian Paul | dd74e36 | 2004-04-08 22:26:22 +0000 | [diff] [blame] | 327 | FINAL_LIBS=${LIBNAME} |
| 328 | elif [ $STATIC = 1 ] ; then |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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 |
Eric Anholt | b83435f | 2005-10-18 23:36:40 +0000 | [diff] [blame^] | 336 | SHLIB="lib${LIBNAME}.so.${MAJOR}" |
| 337 | OPTS="-shared -Wl,-soname,${SHLIB}" |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 338 | echo "mklib: Making FreeBSD shared library: " ${SHLIB} |
| 339 | rm -f ${SHLIB} |
Eric Anholt | b83435f | 2005-10-18 23:36:40 +0000 | [diff] [blame^] | 340 | ${LINK} ${OPTS} -o ${SHLIB} ${OBJECTS} ${DEPS} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 341 | FINAL_LIBS=${SHLIB} |
| 342 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 343 | ;; |
| 344 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 345 | 'NetBSD') |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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 |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 360 | ;; |
| 361 | |
Brian Paul | f8c31fc | 2004-01-29 15:21:47 +0000 | [diff] [blame] | 362 | 'IRIX' | 'IRIX64') |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 363 | if [ $STATIC = 1 ] ; then |
| 364 | LIBNAME="lib${LIBNAME}.a" |
| 365 | rm -f ${LIBNAME} |
| 366 | ar rc ${LIBNAME} ${OBJECTS} |
| 367 | FINAL_LIBS=${LIBNAME} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 368 | else |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 369 | LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so" |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 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. |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 392 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 393 | ;; |
| 394 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 395 | 'linux-cygwin') |
| 396 | LIBNAME="lib${LIBNAME}.a" |
| 397 | echo "mklib: Making linux-cygwin library: " ${LIBNAME} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 398 | rm -f ${LIBNAME} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 399 | gnuwin32ar ruv ${LIBNAME} ${OBJECTS} |
| 400 | FINAL_LIBS=${LIBNAME} |
| 401 | ;; |
| 402 | |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 403 | 'HP-UX') |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 404 | if [ $STATIC = 1 ] ; then |
| 405 | LIBNAME="lib${LIBNAME}.a" |
Brian Paul | 52fb07e | 2004-03-30 14:47:02 +0000 | [diff] [blame] | 406 | echo "mklib: Making HP-UX static library: " ${LIBNAME} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 407 | rm -f ${LIBNAME} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 408 | ar -ruv ${LIBNAME} ${OBJECTS} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 409 | FINAL_LIBS=${LIBNAME} |
| 410 | else |
| 411 | RUNLIB="lib${LIBNAME}.${MAJOR}" |
| 412 | DEVLIB="lib${LIBNAME}.sl" |
Brian Paul | 52fb07e | 2004-03-30 14:47:02 +0000 | [diff] [blame] | 413 | echo "mklib: Making HP-UX shared library: " ${RUNLIB} ${DEVLIB} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 414 | ld -b -o ${RUNLIB} +b ${RUNLIB} ${OBJECTS} ${DEPS} |
| 415 | ln -s ${RUNLIB} ${DEVLIB} |
Brian Paul | ac0cfee | 2004-04-25 15:13:56 +0000 | [diff] [blame] | 416 | FINAL_LIBS="${RUNLIB} ${DEVLIB}" |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 417 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 418 | ;; |
| 419 | |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 420 | 'AIX' | 'AIX64') |
| 421 | if [ $ARCH = "AIX64" ] ; then |
| 422 | X64="-X64" |
| 423 | fi |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 424 | |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 425 | if [ $STATIC = 1 ] ; then |
| 426 | LIBNAME="lib${LIBNAME}.a" |
| 427 | echo "mklib: Making AIX static library: " ${LIBNAME} |
Brian Paul | 7a534dc | 2005-09-14 02:18:09 +0000 | [diff] [blame] | 428 | rm -f ${LIBNAME} |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 429 | ar -ruv ${X64} ${LIBNAME} ${OBJECTS} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 430 | FINAL_LIBS=${LIBNAME} |
| 431 | else |
Karl Schultz | a16bdb5 | 2004-10-01 13:33:26 +0000 | [diff] [blame] | 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 |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 435 | if [ $ARCH = "AIX64" ] ; then |
| 436 | OPTS="-bE:${EXPFILE} -bM:SRE -bnoentry -q64" |
| 437 | else |
| 438 | OPTS="-bE:${EXPFILE} -bM:SRE -bnoentry" |
| 439 | fi |
Karl Schultz | a16bdb5 | 2004-10-01 13:33:26 +0000 | [diff] [blame] | 440 | rm -f ${EXPFILE} ${OFILE} |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 441 | NM="/bin/nm -eC ${X64}" |
Karl Schultz | a16bdb5 | 2004-10-01 13:33:26 +0000 | [diff] [blame] | 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} |
Brian Paul | b17a1a1 | 2004-11-01 22:28:42 +0000 | [diff] [blame] | 458 | ar ${X64} -r ${LIBNAME} ${OFILE} |
Karl Schultz | a16bdb5 | 2004-10-01 13:33:26 +0000 | [diff] [blame] | 459 | FINAL_LIBS="${LIBNAME}" |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 460 | fi |
| 461 | ;; |
| 462 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 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') |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 471 | if [ $STATIC = 1 ] ; then |
| 472 | LIBNAME="lib${LIBNAME}.a" |
| 473 | echo "mklib: Making OSF/1 static library: " ${LIBNAME} |
| 474 | rm -f ${LIBNAME} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 475 | ar -ruv ${LIBNAME} ${OBJECTS} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 476 | FINAL_LIBS=${LIBNAME} |
| 477 | else |
| 478 | VERSION="${MAJOR}.${MINOR}" |
| 479 | LIBNAME="lib${LIBNAME}.so" |
| 480 | echo "mklib: Making OSF/1 shared library: " ${LIBNAME} |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 481 | if [ "x$LINK" = "x" ] ; then |
| 482 | if [ $CPLUSPLUS = 1 ] ; then |
| 483 | LINK=cxx |
| 484 | else |
| 485 | LINK=cc |
| 486 | fi |
Brian Paul | 0d5e6cc | 2004-11-29 17:23:12 +0000 | [diff] [blame] | 487 | fi |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 488 | rm -f ${LIBNAME}.${VERSION} |
Brian Paul | 0d5e6cc | 2004-11-29 17:23:12 +0000 | [diff] [blame] | 489 | ${LINK} -o ${LIBNAME}.${VERSION} -shared -set_version ${VERSION} -soname ${LIBNAME}.${VERSION} -expect_unresolved \* -all ${OBJECTS} ${DEPS} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 490 | ln -sf ${LIBNAME}.${VERSION} ${LIBNAME} |
| 491 | FINAL_LIBS="${LIBNAME} ${LIBNAME}.${VERSION}" |
| 492 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 493 | ;; |
| 494 | |
| 495 | 'Darwin') |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 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 |
Brian Paul | ccda216 | 2005-06-30 02:33:25 +0000 | [diff] [blame] | 504 | LIBNAME="lib${LIBNAME}.dylib" |
Brian Paul | c50d77a | 2004-04-13 17:35:17 +0000 | [diff] [blame] | 505 | echo "mklib: Making Darwin shared library: " ${LIBNAME} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 506 | FLAGS="-dynamiclib -multiply_defined suppress" |
Brian Paul | c05658d | 2004-03-25 21:18:32 +0000 | [diff] [blame] | 507 | if [ $CPLUSPLUS = 1 ] ; then |
| 508 | LINK="g++" |
| 509 | else |
| 510 | LINK="cc" |
| 511 | fi |
| 512 | ${LINK} ${FLAGS} -o ${LIBNAME} ${OBJECTS} ${DEPS} |
Brian Paul | aaba075 | 2004-03-23 23:25:47 +0000 | [diff] [blame] | 513 | FINAL_LIBS=${LIBNAME} |
Brian Paul | c193bd0 | 2004-03-18 15:41:59 +0000 | [diff] [blame] | 514 | fi |
| 515 | ;; |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 516 | |
| 517 | 'LynxOS') |
| 518 | LIBNAME="lib${LIBNAME}.a" |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 519 | echo "mklib: Making LynxOS static library: " ${LIBNAME} |
| 520 | rm -f ${LIBNAME} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 521 | ar ru ${LIBNAME} ${OBJECTS} |
| 522 | FINAL_LIBS=${LIBNAME} |
| 523 | ;; |
| 524 | |
| 525 | 'BeOS') |
Philippe Houdoin | ef4dd5a | 2004-08-14 10:12:38 +0000 | [diff] [blame] | 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 |
Brian Paul | b784b8f | 2004-08-14 14:30:36 +0000 | [diff] [blame] | 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}" |
Brian Paul | 8dcc673 | 2005-07-25 22:59:58 +0000 | [diff] [blame] | 535 | # XXX remove the Mesa3D stuff here since mklib isn't mesa-specific. |
Brian Paul | b784b8f | 2004-08-14 14:30:36 +0000 | [diff] [blame] | 536 | setversion "${LIBNAME}" -app ${MAJOR} ${MINOR} ${PATCH} -short "Powered by Mesa3D!" -long "Powered by Mesa3D!" |
| 537 | fi |
| 538 | FINAL_LIBS=${LIBNAME} |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 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 | |
Brian Paul | 65e2ab3 | 2003-10-27 18:13:37 +0000 | [diff] [blame] | 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 | |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 555 | 'icc') |
| 556 | # Intel C compiler |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 557 | # This should get merged into the Linux code, above, since this isn't |
| 558 | # really a different architecture. |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 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}" |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 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 |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 579 | # rm any old libs |
| 580 | rm -f ${LIBNAME}.so.${VERSION} |
| 581 | rm -f ${LIBNAME}.so.${MAJOR} |
| 582 | rm -f ${LIBNAME}.so |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 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 | |
Brian Paul | 12d6cae | 2004-01-10 22:12:21 +0000 | [diff] [blame] | 593 | 'aix-gcc') |
| 594 | # AIX with gcc |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 608 | # NOTE: the application linking with this library must specify |
| 609 | # the -Wl,-brtl flags to gcc |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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} |
Brian Paul | 12d6cae | 2004-01-10 22:12:21 +0000 | [diff] [blame] | 621 | rm -f ${LIBNAME} |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 622 | ar ru ${LIBNAME} ${OBJECTS} |
| 623 | FINAL_LIBS="${LIBNAME}" |
Brian Paul | 12d6cae | 2004-01-10 22:12:21 +0000 | [diff] [blame] | 624 | ;; |
Brian Paul | b3b725b | 2003-12-15 16:14:55 +0000 | [diff] [blame] | 625 | |
Brian Paul | 580548d | 2004-04-22 16:16:42 +0000 | [diff] [blame] | 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 | |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 666 | 'example') |
| 667 | # If you're adding support for a new architecture, you can |
| 668 | # start with this: |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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 |
Brian Paul | 7c1ab40 | 2005-07-25 23:49:50 +0000 | [diff] [blame] | 676 | LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so" |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 677 | echo "mklib: Making shared library for example arch: " ${LIBNAME} |
| 678 | ld -o ${LIBNAME} ${OBJECTS} ${DEPS} |
| 679 | FINAL_LIBS="${LIBNAME}" |
| 680 | fi |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 681 | ;; |
| 682 | |
| 683 | *) |
Brian Paul | 5396ab2 | 2004-02-12 14:48:52 +0000 | [diff] [blame] | 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." |
Brian Paul | 8c20c7b | 2003-06-01 16:21:45 +0000 | [diff] [blame] | 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 |