From: Chris Nandor Date: Fri, 5 Sep 1997 00:00:00 +0000 (+0000) Subject: Dynamic Loading on MkLinux (osname=linux,archname=ppc-linux) X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=925266451136604d403de4bde5daacaa981d18a3;p=p5sagit%2Fp5-mst-13.2.git 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 for pointing this out. Credited: Shimpei Yamashita p5p-msgid: 33EF1634.B36B6500@pobox.com --- diff --git a/hints/linux.sh b/hints/linux.sh index d458c49..6a11a42 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 +# 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' +