diff options
author | Chris Nandor <pudge@pobox.com> | 1997-09-05 00:00:00 +0000 |
---|---|---|
committer | Tim Bunce <Tim.Bunce@ig.co.uk> | 1997-09-05 00:00:00 +1200 |
commit | 925266451136604d403de4bde5daacaa981d18a3 (patch) | |
tree | 3038f874ece65b447c1bfdea2472b7759e04ab27 /hints | |
parent | 19636209a48bfdfe59eac498a2c3ab95c5df6098 (diff) | |
download | perl-925266451136604d403de4bde5daacaa981d18a3.tar.gz |
Dynamic Loading on MkLinux (osname=linux,archname=ppc-linux)
MkLinux (osname=linux,archname=ppc-linux), which differs slightly from other
linuces, needs special flags passed in order for dynamic loading to work.
Perhaps this should be somehow incorporated into linux.sh or something? I'd
propose a patch, but this is not my area of expertise at all.
instead of the recommended:
ccdlflags='-rdynamic'
it should be:
ccdlflags='-Wl,-E'
Thanks to Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu> for pointing
this out.
Credited: Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu>
p5p-msgid: 33EF1634.B36B6500@pobox.com
Diffstat (limited to 'hints')
-rw-r--r-- | hints/linux.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/hints/linux.sh b/hints/linux.sh index d458c49f80..6a11a42cc3 100644 --- a/hints/linux.sh +++ b/hints/linux.sh @@ -182,3 +182,15 @@ then else echo 'Your csh is really tcsh. Good.' fi + +# Shimpei Yamashita <shimpei@socrates.patnet.caltech.edu> +# Message-Id: <33EF1634.B36B6500@pobox.com> +# +# MkLinux (osname=linux,archname=ppc-linux), which differs slightly from other +# linuces, needs special flags passed in order for dynamic loading to work. +# instead of the recommended: +# ccdlflags='-rdynamic' +# +# it should be: +# ccdlflags='-Wl,-E' + |