summaryrefslogtreecommitdiffstats
path: root/src/util/makeshlib
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/makeshlib')
-rw-r--r--src/util/makeshlib11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/util/makeshlib b/src/util/makeshlib
index 1c7a06bd1..86750c49a 100644
--- a/src/util/makeshlib
+++ b/src/util/makeshlib
@@ -19,6 +19,17 @@ case $host in
echo $CC -G -o $library $FILES
$CC -G -o $library $FILES
;;
+alpha-*-osf*)
+ FILES=`for i
+ do
+ sed -e "s;^;$i/;" -e "s; ; $i/;g" $i/DONE
+
+ done`
+
+ echo ld -shared -o $library -all $FILES -none -lc
+ ld -shared -o $library -all $FILES -none -lc
+ ;;
+
*)
echo "Host type $host not supported!"
exit 1