blob: 1f9d71f5c9266b3a525b1552d9c7eea63d697de5 (
plain)
1
2
3
4
5
6
7
8
9
|
# hints/dec_osf.sh
optimize="-g"
ccflags="$ccflags -DSTANDARD_C -DDEBUGGING"
# Version 1 has problems with -no_archive if only an archive
# lib is available.
case "$osvers" in
1*) lddlflags='-shared -expect_unresolved "*" -s' ;;
*) lddlflags='-shared -no_archive -expect_unresolved "*" -s' ;;
esac
|