Can I direct someone's attention to the annoying but easy to fix bug: http://www.freebsd.org/cgi/query-pr.cgi?pr=gnu/96570 There are still a few days left to make sure, FreeBSD-6.1 is shipped with amd64 being able to link 32-bit executables. Release Engineers insist, it must be fixed in current first... Thanks! -mi
Sorry incase any of you else are interested. Read Below. ---------- Forwarded message ---------- From: Sean Bryant <bryants@gmail.com> Date: May 1, 2006 4:41 PM Subject: Re: cc can't build 32-bit executables on amd64 To: Mikhail Teterin <mi+mx@aldan.algebra.com> add the flag -B/usr/lib32 and -B/usr/local/lib32 to cc. This will fix linking. So its not a problem. On 5/1/06, Mikhail Teterin <mi+mx@aldan.algebra.com> wrote:> Can I direct someone's attention to the annoying but easy to fix bug: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=gnu/96570 > > There are still a few days left to make sure, FreeBSD-6.1 is shipped with > amd64 being able to link 32-bit executables. > > Release Engineers insist, it must be fixed in current first... > > Thanks! > > -mi > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org" >-- Sean Bryant -- Sean Bryant
This was originally mentioned in amd64/76224 which was closed by obrien with the terse remark: "We don't yet support building 32-bit apps on a 64-bit system. We only barely support *running* them at this point." Really this deserves an errata mention at the very least. It just simply isn't intuitive that this functionality would be missing from a tier-1 release. Paul>From Mikhail Teterin <mi+mx@aldan.algebra.com>, Mon, May 01, 2006 at 04:04:26PM -0400: > Can I direct someone's attention to the annoying but easy to fix bug: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=gnu/96570 > > There are still a few days left to make sure, FreeBSD-6.1 is shipped with > amd64 being able to link 32-bit executables. > > Release Engineers insist, it must be fixed in current first... > > Thanks! > > -mi > _______________________________________________ > freebsd-stable@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-stable > To unsubscribe, send any mail to "freebsd-stable-unsubscribe@freebsd.org"
On 2006-05-01 16:04, Mikhail Teterin <mi+mx@aldan.algebra.com> wrote:> Can I direct someone's attention to the annoying but easy to fix bug: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=gnu/96570 > > There are still a few days left to make sure, FreeBSD-6.1 is shipped with > amd64 being able to link 32-bit executables. > > Release Engineers insist, it must be fixed in current first...cc can build binaries just fine if you also use the -B option: % cc -m32 -B/usr/lib32 ... I know it does because I've used it on my laptop a while ago, running FreeBSD/amd64. It's dead now so I can verify this works in all cases, but it seemed to solve this for me a couple of months ago.