I just discussed the issue with a former SuSE developer... and we finally agreed that the perl-32bit package is just plain broken/incomplete1. — In other words, it's not your fault! :)

As a workaround, you can proceed as follows:

Get hold of the following two RPMs (e.g. from the SuSE 10.3 installation media in the i586 subdirectory), and copy them into some temporary directory:

perl-base-5.8.8-75.i586.rpm perl-5.8.8-75.i586.rpm

Extract the 32-bit perl binary and the i586-linux-thread-multi subtrees from those packages

temp/ $ rpm2cpio perl-base-5.8.8-75.i586.rpm | cpio -idmv '*i586-linux +*' './usr/bin/perl' temp/ $ rpm2cpio perl-5.8.8-75.i586.rpm | cpio -idmv '*i586-linux +*'

Rename the binary, e.g. to "perl32"

temp/ $ mv usr/bin/perl usr/bin/perl32

In the temp dir, you should find a directory ./usr, which you then just copy over into the existing (64-bit) perl installation, i.e. (as root):

temp/ $ cp -af usr/ /

(don't worry... the 64-bit version will work as before)

___

1 The perl-32bit package is missing

(bug report submitted, so hopefully the issue will be fixed in the next SuSE release)


In reply to Re: 32bit lib on 64bit system by almut
in thread 32bit lib on 64bit system by bkchapin

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.