From mboxrd@z Thu Jan 1 00:00:00 1970 From: Moritz Lell Subject: How to get libtool for gcc-9? Date: Mon, 3 Feb 2020 23:14:40 +0100 Message-ID: <1533ba6b-ec68-75eb-aea8-c62016e39feb@posteo.de> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:470:142:3::10]:48913) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyjzW-0004MG-DL for help-guix@gnu.org; Mon, 03 Feb 2020 17:14:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyjzT-0001F1-OH for help-guix@gnu.org; Mon, 03 Feb 2020 17:14:49 -0500 Received: from mout02.posteo.de ([185.67.36.66]:59207) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1iyjzS-00015D-RW for help-guix@gnu.org; Mon, 03 Feb 2020 17:14:47 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 60A572400FF for ; Mon, 3 Feb 2020 23:14:44 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 48BMZC1MPrz9rxN for ; Mon, 3 Feb 2020 23:14:42 +0100 (CET) Content-Language: en-US-large List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane-mx.org@gnu.org Sender: "Help-Guix" To: help-guix@gnu.org Hello, When I use an environment like LC_ALL=C guix environment --ad-hoc \ gcc-toolchain libtool grep which coreutils I get gcc --version | head -n1 # gcc (GCC) 9.2.0 but libtool looks for gcc-7.4.0 libraries: grep 'gcc-.*\ ' `which libtool` | sed 's/ /\n /g' # sys_lib_search_path_spec="[...] # /gnu/store/2plcy91lypnbbysb18ymnhaw3zwk8pg1-gcc-7.4.0-lib/[...]" # compiler_lib_search_dirs=" [...] # /gnu/store/2plcy91lypnbbysb18ymnhaw3zwk8pg1-gcc-7.4.0-lib/[...]" # postdep_objects=\ # "/gnu/store/2plcy91lypnbbysb18ymnhaw3zwk8pg1-gcc-7.4.0-lib/[...] # compiler_lib_search_path="[...] # -L/gnu/store/2plcy91lypnbbysb18ymnhaw3zwk8pg1-gcc-7.4.0-lib/ # [...]" How can I get a libtool that uses the libraries of gcc-9.2.0? Best, Moritz