From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:39701) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ieQ3a-0003Cr-WD for guix-patches@gnu.org; Mon, 09 Dec 2019 15:55:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ieQ3Z-0004oB-UQ for guix-patches@gnu.org; Mon, 09 Dec 2019 15:55:02 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:48510) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ieQ3Z-0004o3-Qt for guix-patches@gnu.org; Mon, 09 Dec 2019 15:55:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ieQ3Z-0003PB-Qa for guix-patches@gnu.org; Mon, 09 Dec 2019 15:55:01 -0500 Subject: [bug#38552] [PATCH 1/1] gnu: ruby: Configure for dynamic linking. References: <877e35uspe.fsf@posteo.net> In-Reply-To: <877e35uspe.fsf@posteo.net> Resent-Message-ID: From: Brett Gilio Date: Mon, 09 Dec 2019 14:54:42 -0600 Message-ID: <8736dtusml.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/x-patch; charset=utf-8 Content-Disposition: inline; filename=0001-gnu-ruby-Configure-for-dynamic-linking.patch Content-Transfer-Encoding: quoted-printable Content-Description: [PATCH 1/1] gnu: ruby: Configure for dynamic linking. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38552@debbugs.gnu.org >From 36e56ea5d882d112f24d49050813066eece98af2 Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 9 Dec 2019 14:46:47 -0600 Subject: [PATCH 1/1] gnu: ruby: Configure for dynamic linking. To: guix-patches@gnu.org * gnu/packages/ruby.scm (ruby)[arguments]: Use #:configure-flags to properly enable dynamic linking instead of using libruby-static.a. Solves #38500. Reported-by: Vicente Eduardo --- gnu/packages/ruby.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm index 70b59e9156..a4b9bc6968 100644 --- a/gnu/packages/ruby.scm +++ b/gnu/packages/ruby.scm @@ -19,6 +19,7 @@ ;;; Copyright =C2=A9 2019 Brian Leung ;;; Copyright =C2=A9 2019 Collin J. Doering ;;; Copyright =C2=A9 2019 Diego N. Barbato +;;; Copyright =C2=A9 2019 Brett Gilio ;;; ;;; This file is part of GNU Guix. ;;; @@ -95,6 +96,7 @@ (build-system gnu-build-system) (arguments `(#:test-target "test" + #:configure-flags '("--enable-shared") ; dynamic linking #:phases (modify-phases %standard-phases (add-before 'configure 'replace-bin-sh-and-remove-libffi --=20 2.24.0