From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH] Add SuiteSparse. Date: Thu, 19 Mar 2015 09:52:10 +0100 Message-ID: <87pp8574jp.fsf@gnu.org> References: 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]:51652) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYWBe-0007tq-I2 for guix-devel@gnu.org; Thu, 19 Mar 2015 04:52:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YYWBZ-0008U7-H9 for guix-devel@gnu.org; Thu, 19 Mar 2015 04:52:18 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:41639) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YYWBZ-0008U1-E0 for guix-devel@gnu.org; Thu, 19 Mar 2015 04:52:13 -0400 In-Reply-To: (Eric Bavier's message of "Wed, 18 Mar 2015 13:52:27 -0500") 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: Eric Bavier Cc: Guix Eric Bavier skribis: > On 2015-03-18 05:09, Ricardo Wurmus wrote: [...] >> + (inputs >> + `(("tbb" ,tbb) >> + ("lapack" ,lapack) >> + ("atlas" ,atlas))) > > It appears from the #:make-flags that only the blas library is used. > Are both "lapack" and "atlas" required? Or would just one suffice? Something I often do is to check the output of something like: guix gc --references $(guix build suitesparse) It=E2=80=99s a simple way to check if optional dependencies are actually us= ed, for instance. Ludo=E2=80=99.