From mboxrd@z Thu Jan 1 00:00:00 1970 From: mikadoZero Subject: bug#34850: ghc compiling error Date: Wed, 13 Mar 2019 18:30:31 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:35732) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4CPr-0001Sw-AR for bug-guix@gnu.org; Wed, 13 Mar 2019 18:32:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h4CPq-0005qp-KP for bug-guix@gnu.org; Wed, 13 Mar 2019 18:32:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57297) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h4CPq-0005qh-EW for bug-guix@gnu.org; Wed, 13 Mar 2019 18:32:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h4CPq-00058X-4l for bug-guix@gnu.org; Wed, 13 Mar 2019 18:32:02 -0400 Sender: "Debbugs-submit" Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:35614) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h4COn-0001Nz-SC for bug-guix@gnu.org; Wed, 13 Mar 2019 18:30:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h4COm-0005LZ-DI for bug-guix@gnu.org; Wed, 13 Mar 2019 18:30:57 -0400 Received: from forward104o.mail.yandex.net ([2a02:6b8:0:1a2d::607]:54912) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1h4COl-0005KS-Qg for bug-guix@gnu.org; Wed, 13 Mar 2019 18:30:56 -0400 Received: from mxback15j.mail.yandex.net (mxback15j.mail.yandex.net [IPv6:2a02:6b8:0:1619::91]) by forward104o.mail.yandex.net (Yandex) with ESMTP id 79EE19403FC for ; Thu, 14 Mar 2019 01:30:51 +0300 (MSK) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: "bug-Guix" To: 34850@debbugs.gnu.org `guix describe` guix fd4c7a0 repository URL: https://git.savannah.gnu.org/git/guix.git branch: master commit: fd4c7a098a508c1de7a8513c0f3d88d5a0df12e7 I have ghc in my system configuration file. I have just done a pull and reconfigure. `which ghc` /run/current-system/profile/bin/ghc I created a one line hello world program: ```haskell main = putStrLn "hello, world" ``` Then I tried to compile it with ghc. I get this error. `ghc Main` [1 of 1] Compiling Main ( Main.hs, Main.o ) gcc: error trying to exec 'as': execvp: No such file or directory `gcc' failed in phase `Assembler'. (Exit code: 1) I have tested compiling the same hello world program with the same ghc command and it works fine on a none Guix System.