From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: Qt Date: Thu, 10 Oct 2013 15:09:09 +0200 Message-ID: <874n8pe0i2.fsf@gnu.org> References: <20131008190520.GA31264@debian> <87mwmjxym7.fsf@gnu.org> <20131010125952.GA32470@debian.bordeaux.inria.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42350) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUG4I-0008KJ-In for guix-devel@gnu.org; Thu, 10 Oct 2013 09:14:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VUG4C-00060J-EB for guix-devel@gnu.org; Thu, 10 Oct 2013 09:14:18 -0400 Received: from hera.aquilenet.fr ([141.255.128.1]:34605) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VUG4C-00060E-7D for guix-devel@gnu.org; Thu, 10 Oct 2013 09:14:12 -0400 In-Reply-To: <20131010125952.GA32470@debian.bordeaux.inria.fr> (Andreas Enge's message of "Thu, 10 Oct 2013 14:59:52 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org To: Andreas Enge Cc: guix-devel@gnu.org Andreas Enge skribis: > On Tue, Oct 08, 2013 at 11:05:04PM +0200, Ludovic Court=C3=A8s wrote: >> Andreas Enge skribis: >> > Also, the build uses >> > sse/sse2/... instructions according to what is available on the >> > processor; we might wish to disable all or at least the most advanced >> > of them in the long run. >> If it=E2=80=99s a matter of adding the right configure flag, I=E2=80=99d= do it before >> it bites. > > The following will leave out any special instructions, as far as I can se= e: > + "-no-sse2" > + "-no-sse3" > + "-no-ssse3" > + "-no-sse4.1" > + "-no-sse4.2" > + "-no-avx" > + "-no-avx2" > + "-no-neon" > + "-no-mips_dsp" > + "-no-mips_dspr2")))) > > I do not know how much this slows down qt applications. According to wiki= pedia, > sse2 arrived in 2001. So one could argue that adding it would exclude alm= ost > no machines. Yes, you may be right for SSE2 (especially considering the fact that this kind of software is typically used on fairly recent machines.) Ludo=E2=80=99.