Mailinglist Archive: opensuse-buildservice (260 mails)
| < Previous | Next > |
[opensuse-buildservice] Does it need libgcc.i386 when build pkgs on x86_64 platform really?
- From: Jian Lee <lijian.gnu@xxxxxxxxx>
- Date: Wed, 2 Dec 2009 11:47:39 +0800
- Message-id: <200912021147.41161.lijian.gnu@xxxxxxxxx>
hi,all
I've setup a obs on my local host already.
But I used a hack method to resolved the
require about libgcc.i386 when build pkgs
on x86_64 platform.
I've modified /usr/lib/build/Build.pm:
--------------------
575 if ($r eq $p) {
576 push @rerror, "nothing provides $r";
577 } else {
578 push @rerror, "nothing provides $r needed by $p" if (!
$r eq 'libgcc_s.so.1');
579 }
====================
You should saw that I added a "if (! $r eq 'libgcc_s.so.1')" to drop
require error about "libgcc_s.so.1". (The "libgcc_s.so.1"
is provides by libgcc.i386 really!)
Now,it seems ok after i build some pkgs of x86_64.
Does it need libgcc.i386 when build pkgs on x86_64
platform really? Or, does it need some libs of i386
in chroot enviroment when build pkgs on x86_64 platform?
Thanks,
----
Jian Lee [ http://jianlee.ylinux.org ]
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-buildservice+help@xxxxxxxxxxxx
I've setup a obs on my local host already.
But I used a hack method to resolved the
require about libgcc.i386 when build pkgs
on x86_64 platform.
I've modified /usr/lib/build/Build.pm:
--------------------
575 if ($r eq $p) {
576 push @rerror, "nothing provides $r";
577 } else {
578 push @rerror, "nothing provides $r needed by $p" if (!
$r eq 'libgcc_s.so.1');
579 }
====================
You should saw that I added a "if (! $r eq 'libgcc_s.so.1')" to drop
require error about "libgcc_s.so.1". (The "libgcc_s.so.1"
is provides by libgcc.i386 really!)
Now,it seems ok after i build some pkgs of x86_64.
Does it need libgcc.i386 when build pkgs on x86_64
platform really? Or, does it need some libs of i386
in chroot enviroment when build pkgs on x86_64 platform?
Thanks,
----
Jian Lee [ http://jianlee.ylinux.org ]
--
To unsubscribe, e-mail: opensuse-buildservice+unsubscribe@xxxxxxxxxxxx
For additional commands, e-mail: opensuse-buildservice+help@xxxxxxxxxxxx
| < Previous | Next > |