From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andreas Enge Subject: Re: failing packages Date: Sat, 17 Oct 2015 22:37:32 +0200 Message-ID: <20151017203732.GB16824@debian> References: <20151006124812.3e2c2f3f@debian-netbook> <20151016201135.GA14772@debian> <20151016210206.GA23225@debian> <20151017105253.GA5054@thebird.nl> <20151017195605.GA16011@debian> <87io65gt2l.fsf@elephly.net> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZnYEj-0004xu-MM for guix-devel@gnu.org; Sat, 17 Oct 2015 16:37:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZnYEg-0005CA-Fj for guix-devel@gnu.org; Sat, 17 Oct 2015 16:37:53 -0400 Received: from mout.kundenserver.de ([212.227.126.131]:50142) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZnYEg-0005C6-6r for guix-devel@gnu.org; Sat, 17 Oct 2015 16:37:50 -0400 Content-Disposition: inline In-Reply-To: <87io65gt2l.fsf@elephly.net> 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: Ricardo Wurmus Cc: guix-devel@gnu.org On Sat, Oct 17, 2015 at 10:04:34PM +0200, Ricardo Wurmus wrote: > It’s a bioinfo library, so I don’t think MIPS (or ARM) is officially > supported, but personally I would like to resist the urge to declare all > bioinfo tools unsupported on non-Intel. In this case, they are: print "checking machine architecture... " unless ($AUTORUN); println $MARCH unless ($AUTORUN); unless ($MARCH =~ /x86_64/i || $MARCH =~ /i?86/i) { println "configure: error: unsupported architecture '$OSTYPE'"; exit 1; } in ngs-sdk/setup/konfigure.perl. I will add a supported-system statement. Andreas