From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?utf-8?B?5a6L5paH5q2m?= Subject: Re: Cmake build failure Date: Tue, 28 Apr 2015 14:36:51 +0800 Message-ID: <87oam8hi7w.fsf@gmail.com> References: <20150427172345.GA28090@debian> <87r3r5gde0.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50283) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ymz87-0002YV-71 for guix-devel@gnu.org; Tue, 28 Apr 2015 02:36:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Ymz83-0003zI-RM for guix-devel@gnu.org; Tue, 28 Apr 2015 02:36:27 -0400 Received: from mail-pa0-x22b.google.com ([2607:f8b0:400e:c03::22b]:34327) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Ymz83-0003zC-Jo for guix-devel@gnu.org; Tue, 28 Apr 2015 02:36:23 -0400 Received: by pacyx8 with SMTP id yx8so154754549pac.1 for ; Mon, 27 Apr 2015 23:36:22 -0700 (PDT) In-Reply-To: <87r3r5gde0.fsf@gmail.com> 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: Andreas Enge , guix-devel@gnu.org > Andreas Enge writes: > >> Hello, >> >> cmake in core-updates currently fails one test: >> http://hydra.gnu.org/eval/103918?full=1 >> >> The culprit seems to be a linking problem: >> root@debian:/tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3/Tests/BundleUtilities# source ../../../environment-variables >> root@debian:/tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3# ldd testbundleutils1 >> linux-vdso.so.1 (0x00007fff5abf0000) >> libshared.so => not found >> libframework.so => not found >> libdl.so.2 => /gnu/store/hy2hi0zj5hrqkmkhpdxf04c9bcnlnsf9-glibc-2.21/lib/libdl.so.2 (0x00007fba29be8000) >> libstdc++.so.6 => /tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3/Tests/BundleUtilities/testdir1/libstdc++.so.6 (0x00007fba298e6000) >> libm.so.6 => /tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3/Tests/BundleUtilities/testdir1/libm.so.6 (0x00007fba295e4000) >> libgcc_s.so.1 => /tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3/Tests/BundleUtilities/testdir1/libgcc_s.so.1 (0x00007fba293ce000) >> libc.so.6 => /tmp/nix-build-cmake-3.1.3.drv-0/cmake-3.1.3/Tests/BundleUtilities/testdir1/libc.so.6 (0x00007fba2902e000) >> /gnu/store/hy2hi0zj5hrqkmkhpdxf04c9bcnlnsf9-glibc-2.21/lib/ld-linux-x86-64.so.2 (0x00007fba29dec000) I think we can safely disable this test.. The bundle feature is used to pack a standalong app with dependencies, libraries are included with RPATH removed. But we also modify the 'ld' interpreter, so it not usable for us. I'll push a patch to disable the test (and update to 3.2.2) soon.