From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 71022 invoked by alias); 2 Dec 2018 18:59:57 -0000 Mailing-List: contact insight-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: insight-owner@sourceware.org Received: (qmail 71002 invoked by uid 89); 2 Dec 2018 18:59:56 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=Prof, HTo:U*insight, restore, H*c:windows-1252 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 02 Dec 2018 18:59:55 +0000 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 1BF8BC00EB03; Sun, 2 Dec 2018 18:59:54 +0000 (UTC) Received: from theo.uglyboxes.com (ovpn04.gateway.prod.ext.phx2.redhat.com [10.5.9.4]) by smtp.corp.redhat.com (Postfix) with ESMTPS id D255B84FA; Sun, 2 Dec 2018 18:59:53 +0000 (UTC) Subject: Re: build on raspberry 3B+ To: =?UTF-8?B?TcO8bGxlciwgQW5kcmVhcywgUHJvZi4gRHIu?= , "insight@sourceware.org" References: <93D445DDAAD4584D8F631D16F40766AB979483C8@Vorlon.h-da.local> From: Keith Seitz Message-ID: Date: Sun, 02 Dec 2018 18:59:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <93D445DDAAD4584D8F631D16F40766AB979483C8@Vorlon.h-da.local> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit X-IsSubscribed: yes X-SW-Source: 2018-q4/txt/msg00002.txt.bz2 On 12/2/18 10:30 AM, Müller, Andreas, Prof. Dr. wrote: > I am trying to build the Insight software on a Raspberry Pi 3B+. I > get the enclosed two errors when running "make" and "make install". > Can you help me fixing them? >From make_messages: if (/home/pi/src/insight-6.8/missing makeinfo --split-size=5000000 --split-size= 5000000 --version) >/dev/null 2>&1; then \ for f in bfd.info bfd.info-[0-9] bfd.info-[0-9][0-9] bfd.i[0-9] bfd.i[0-9][0-9 ]; do \ if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; \ done; \ else :; fi && \ if /home/pi/src/insight-6.8/missing makeinfo --split-size=5000000 --split-size=5000000 -I ../../../src/insight-6.8/bfd/doc \ -o bfd.info `test -f 'bfd.texinfo' || echo '../../../src/insight-6.8/bfd/doc/'`bfd.texinfo; \ then \ rc=0; \ else \ rc=$?; \ $restore $backupdir/* `echo "./bfd.info" | sed 's|[^/]*$||'`; \ fi; \ rm -rf $backupdir; exit $rc Makefile:390: recipe for target 'bfd.info' failed There is no error message contained in here... Did you by chance redirect stdout to a file when compiling and forget to redirect stderr? Nonetheless, bfd.info failed, and I'm going to take a wild guess that your system doesn't have makeinfo installed. This is in the texinfo package. >From make_install_messages: /bin/bash ./libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I. -I../../src/insight-6.8/bfd -I. -I. -I../../src/insight-6.8/bfd -I../../src/insight-6.8/bfd/../include -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -c -o opncls.lo ../../src/insight-6.8/bfd/opncls.c libtool: compile: gcc -DHAVE_CONFIG_H -I. -I../../src/insight-6.8/bfd -I. -I. -I../../src/insight-6.8/bfd -I../../src/insight-6.8/bfd/../include -W -Wall -Wstrict-prototypes -Wmissing-prototypes -Werror -g -O2 -c ../../src/insight-6.8/bfd/opncls.c -o opncls.o Makefile:1071: recipe for target 'opncls.lo' failed Again, no error messages here. [It looks like stderr is missing from the output.] However, for this one, I cannot guess off the top of my head what the problem might be. Insight 6.8? That's *really* old. I would encourage you to clone the GIT repo [git clone git://sourceware.org/git/insight.git] and build that. That's what I've been using for several years now. I don't believe we've done an "official" release in almost ten years. Maybe I should. Keith