From owner-freebsd-current@freebsd.org Sun Nov 8 18:28:23 2015 Return-Path: Delivered-To: freebsd-current@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 D773FA292E5 for ; Sun, 8 Nov 2015 18:28:23 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu [128.95.76.21]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "troutmask", Issuer "troutmask" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B981D1A80 for ; Sun, 8 Nov 2015 18:28:23 +0000 (UTC) (envelope-from sgk@troutmask.apl.washington.edu) Received: from troutmask.apl.washington.edu (localhost [127.0.0.1]) by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id tA8ISHFY049966 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 8 Nov 2015 10:28:17 -0800 (PST) (envelope-from sgk@troutmask.apl.washington.edu) Received: (from sgk@localhost) by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id tA8ISHgR049965; Sun, 8 Nov 2015 10:28:17 -0800 (PST) (envelope-from sgk) Date: Sun, 8 Nov 2015 10:28:17 -0800 From: Steve Kargl To: NGie Cooper Cc: freebsd-current@freebsd.org Subject: Re: buildworld broken Message-ID: <20151108182817.GA49944@troutmask.apl.washington.edu> References: <20151101164707.GA5847@troutmask.apl.washington.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.24 (2015-08-30) X-Mailman-Approved-At: Sun, 08 Nov 2015 19:36:22 +0000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Nov 2015 18:28:23 -0000 On Sun, Nov 01, 2015 at 11:19:09PM -0800, NGie Cooper wrote: > > > /usr/obj/usr/src/tmp/usr/lib/libcrypto.so: undefined reference to `PKCS7_dataInit' > > /usr/obj/usr/src/tmp/usr/lib/libcrypto.so: undefined reference to `PKCS7_dataDecode' > > /usr/obj/usr/src/tmp/usr/lib/libcrypto.so: undefined reference to `PKCS7_signatureVerify' > > Hi Steve, > What are your custom build options? Have you patched your copy of FreeBSD? > Thanks! Back to trying to build freebsd. I have discovered that 'make buildworld' is simply broken if one attempts to use a symlink for /usr/obj. At least doing doing % rm -rf /usr/obj % ln -s /mnt/obj /usr/obj % cd /usr/src % nice make -j2 buildworld with /mnt a UFS2 file system on a USB2 disk yields errors of the above form. If one does % rm -rf /usr/obj % setenv OBJDIR /mnt/obj % cd /usr/src % nice make -j2 buildworld works. So, it appears soemthing inside the make infrastructure cannot follow symlinks. This used to work. -- Steve