From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,eeee56c19a542f8d X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII Path: g2news2.google.com!postnews.google.com!j33g2000cwa.googlegroups.com!not-for-mail From: "Ludovic Brenta" Newsgroups: comp.lang.ada Subject: Re: Multi-arch Date: 19 May 2006 00:23:41 -0700 Organization: http://groups.google.com Message-ID: <1148023421.378001.90560@j33g2000cwa.googlegroups.com> References: <1147857777.703653.268610@j33g2000cwa.googlegroups.com> NNTP-Posting-Host: 212.123.3.11 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Trace: posting.google.com 1148023426 32254 127.0.0.1 (19 May 2006 07:23:46 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Fri, 19 May 2006 07:23:46 +0000 (UTC) In-Reply-To: User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; SunOS sun4u; fr-FR; rv:1.6) Gecko/20040116,gzip(gfe),gzip(gfe) X-HTTP-Via: 1.1 KUUPXS02 Complaints-To: groups-abuse@google.com Injection-Info: j33g2000cwa.googlegroups.com; posting-host=212.123.3.11; posting-account=ZjNXewwAAADyBPkwI57_UcX8yKfXWOss Xref: g2news2.google.com comp.lang.ada:4301 Date: 2006-05-19T00:23:41-07:00 List-Id: Bj=F6rn Persson a =E9crit : > Is multi-arch useful in an altogether free system in some way that eludes= me? Yes. Today, for example, OpenOffice works only on 32-bit architectures; if you want to run it on an amd64 machine, you need biarch or multiarch. There are probably other cases where compiling for one of the architectures in a multi-arch system is problematic. Also, 32-bit binaries use less memory than 64-bit binaries do. It makes sense to run 32-bit binaries on 64-bit machines, if those binaries do not benefit from the larger address space or 64-bit instructions. Another benefit of multiarch is that you can e.g. compile i386 binaries on an amd64 machine and run them on i386 machines. --=20 Ludovic Brenta.