From owner-freebsd-arm@freebsd.org Sat Jan 16 10:29:16 2016 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A39F3A83FD5 for ; Sat, 16 Jan 2016 10:29:16 +0000 (UTC) (envelope-from hps@selasky.org) Received: from mail.turbocat.net (heidi.turbocat.net [88.198.202.214]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6F50D13AD for ; Sat, 16 Jan 2016 10:29:16 +0000 (UTC) (envelope-from hps@selasky.org) Received: from laptop015.home.selasky.org (unknown [62.141.129.119]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.turbocat.net (Postfix) with ESMTPSA id A1D941FE024; Sat, 16 Jan 2016 11:29:07 +0100 (CET) Subject: Re: Something odd going on with WITHOUT_DEBUG_FILES To: Jukka Ukkonen , freebsd-arm References: <569A1ADD.5000301@gmail.com> From: Hans Petter Selasky Message-ID: <569A1BF9.3040106@selasky.org> Date: Sat, 16 Jan 2016 11:31:21 +0100 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:38.0) Gecko/20100101 Thunderbird/38.4.0 MIME-Version: 1.0 In-Reply-To: <569A1ADD.5000301@gmail.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jan 2016 10:29:16 -0000 On 01/16/16 11:26, Jukka Ukkonen wrote: > > Hello all, > > When I build head/current using WITHOUT_DEBUG_FILES="yes" the install > phase falls on its face with the following notes... > > install -T debug -o root -g wheel -m 444 libc.so.7.debug > /tank/fish/jau/Xcomp/mnt/usr/lib/debug/lib/ > install: libc.so.7.debug: No such file or directory > > I take this means "make installworld" blindly assumes the .debug file > should be there, though, it has not been built at all. > > Oh yes... The cross build host was an amd64 running a fresh 10-stable > and the target environment was 11-current on RPI2. > Hi, Maybe you need to run: make distrib-dirs DESTDIR=/tank/fish/jau/Xcomp/mnt First, to create the missing directories. --HPS