diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2004-01-29 15:21:47 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2004-01-29 15:21:47 +0000 |
commit | f8c31fcba38f55932a9209a1778265c66466b623 (patch) | |
tree | 2a813bb026d49ab5206a3fbc49ebd597d15333d7 /bin | |
parent | dc8f8bd88f729b9c292afb7b427a7734a4c2f16a (diff) |
more IRIX tweaks
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/mklib | 16 |
1 files changed, 1 insertions, 15 deletions
@@ -223,7 +223,7 @@ case $ARCH in FINAL_LIBS="${LIBNAME}_pic.a ${LIBNAME}.so.${VERSION}" ;; - 'IRIX') + 'IRIX' | 'IRIX64') LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so" if [ $ARCHOPT = "64" ] ; then # 64-bit ABI @@ -247,20 +247,6 @@ case $ARCH in FINAL_LIBS="${LIBNAME}" ;; - 'IRIX64') - LIBNAME="lib${LIBNAME}.so" # prefix with "lib", suffix with ".so" - echo "mklib: Making IRIX64 library: " ${LIBNAME} - # 64-bit ABI - OPTS="-64 -shared -all" - if [ $CPLUSPLUS = 1 ] ; then - LINK="CC" - else - LINK="ld" - fi - ${LINK} ${OPTS} -o ${LIBNAME} ${OBJECTS} ${DEPS} - FINAL_LIBS="${LIBNAME}" - ;; - 'linux-cygwin') LIBNAME="lib${LIBNAME}.a" echo "mklib: Making linux-cygwin library: " ${LIBNAME} |