summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-06-04 20:48:04 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-06-05 10:05:37 +0100
commitda7b3d294b2827f26bdb6dcbe7c123e77865c160 (patch)
tree66c8d87300dfc440d85eb35bb6a7eea255cebbbb /bin
parentd8de01ba4138d603a2ffcd1ae3cd13186cdb98e3 (diff)
pull in minor mklib change to fix debugging
Diffstat (limited to 'bin')
-rwxr-xr-xbin/mklib9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/mklib b/bin/mklib
index 8ee8d8ce49..e17e2fee0b 100755
--- a/bin/mklib
+++ b/bin/mklib
@@ -202,8 +202,13 @@ case $ARCH in
if [ $NOPREFIX = 1 ] ; then
# No "lib" or ".so" part
echo "mklib: Making" $ARCH "shared library: " ${LIBNAME}
- #OPTS="-shared -Wl,-soname,${LIBNAME}" # soname???
- OPTS="-shared"
+ case $ARCH in 'Linux' | 'GNU' | GNU/*)
+ OPTS="-Xlinker -Bsymbolic -shared"
+ ;;
+ *)
+ OPTS="-shared"
+ ;;
+ esac
# Check if objects are 32-bit and we're running in 64-bit
# environment. If so, pass -m32 flag to linker.