From owner-freebsd-current@freebsd.org Wed Mar 17 15:52:36 2021 Return-Path: Delivered-To: freebsd-current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 83F6E56DD4F for ; Wed, 17 Mar 2021 15:52:36 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from mailman.nyi.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id 4F0vn02HSsz4bGj for ; Wed, 17 Mar 2021 15:52:36 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: by mailman.nyi.freebsd.org (Postfix) id 4E6FF56DF33; Wed, 17 Mar 2021 15:52:36 +0000 (UTC) Delivered-To: current@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 4E39356DE64 for ; Wed, 17 Mar 2021 15:52:36 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from udns.ultimatedns.net (static-24-113-41-81.wavecable.com [24.113.41.81]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "ultimatedns.net", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F0vn00B8zz4Zx3 for ; Wed, 17 Mar 2021 15:52:35 +0000 (UTC) (envelope-from bsd-lists@bsdforge.com) Received: from ultimatedns.net (localhost [127.0.0.1]) by udns.ultimatedns.net (8.16.1/8.16.1) with ESMTP id 12HFpmuL062414; Wed, 17 Mar 2021 08:51:55 -0700 (PDT) (envelope-from bsd-lists@bsdforge.com) MIME-Version: 1.0 Date: Wed, 17 Mar 2021 08:51:48 -0700 From: Chris To: gljennjohn@gmail.com Cc: David Wolfskill , current@freebsd.org Subject: Re: Problem building x11/nvidia-driver; ref. n245494-6827435548d2 In-Reply-To: <20210317121837.707dc95a@ernst.home> References: <20210317121837.707dc95a@ernst.home> User-Agent: UDNSMS/17.0 Message-ID: X-Sender: bsd-lists@bsdforge.com Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Rspamd-Queue-Id: 4F0vn00B8zz4Zx3 X-Spamd-Bar: ---- Authentication-Results: mx1.freebsd.org; none X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[] X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.34 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: Wed, 17 Mar 2021 15:52:36 -0000 On 2021-03-17 05:18, Gary Jennejohn wrote: > On Wed, 17 Mar 2021 05:08:50 -0700 > David Wolfskill wrote: > >> My laptop is currently running main-n245489-15b82e00a164; after updating >> sources to n245498-096a84721670, I am performing a source-based update. >> >> A simialr update on my build machine (which is headless, and thus does >> not use anything related to X11) was successful. >> >> The laptop is set up to rebuild x11/nvidia-driver when the kernel >> is updated. >> >> The buildkernel step on it fails with: >> >> ... >> awk -f /usr/src/sys/conf/kmod_syms.awk nvidia-modeset.ko export_syms | >> xargs -J% objcopy % nvidia-modeset.ko >> ===> lib (all) >> ===> lib/libglvnd (all) >> ... >> ===> x11/driver (all) >> ===> x11/extension (all) >> ===> doc (all) >> make[6]: "/usr/share/mk/bsd.man.mk" line 53: Malformed conditional >> (${MK_MANSPLITPKG} == "no") >> make[6]: Fatal errors encountered -- cannot continue >> make[6]: stopped in >> /common/S4/obj/usr/src/amd64.amd64/sys/CANARY/common/ports/x11/nvidia-driver/work/NVIDIA-FreeBSD-x86_64-460.56/doc >> *** Error code 1 >> >> Stop. >> >> >> On reviewing the list of files changed in 15b82e00a164..096a84721670, I >> note a couple of promising-looking candidates: >> >> share/mk/bsd.opts.mk | 1 + >> share/mk/src.opts.mk | 1 - >> >> Reviewing the commit log for share/mk/bsd.opts.mk, I see that the most >> recent entry is: >> >> | commit 6827435548d257c672f934db5c6ff01012d96995 >> | Author: Jung-uk Kim >> | Date: Tue Mar 16 14:16:10 2021 -0400 >> | >> | pkgbase: Fix building out-of-tree manual pages >> | >> | c7e6cb9e08d6 introduced MK_MANSPLITPKG but it was not available for >> | building out-of-tree manual pages. For example, x11/nvidia-driver >> fails >> | with the following error: >> | >> | ===> doc (all) >> | make[3]: "/usr/share/mk/bsd.man.mk" line 53: Malformed conditional >> (${MK_MANSPLITPKG} == "no") >> | make[3]: Fatal errors encountered -- cannot continue >> | >> | Move the definition from src.opts.mk to bsd.opts.mk to make it >> visible. >> >> which looks ... apropos. >> >> Indeed, it appears that the n245494-6827435548d2 change was intended to >> fix the issue that I am now just seeing. >> >> But I readily confess that I have neither familairity nor expertise >> with share/mk/* (and that delving into it reminds me of "You are >> in a mazy twist of passages, all different") >> >> So... help? What do I need to do to be able to build the kernel now? >> >> (E.g., if I need to just skip building x11/nvidia-driver once, get >> everything installed, then build "normally" (with x11/nvidia-driver) >> -- that's fine; I just need a clue.) >> > > For me trying to build nvidia-driver along with the kernel always fails > miserably. +1 for me too. I didn't _used_ to have this problem. But when I hit it. I simply modified my procedure (as you), and never looked back. > > My tree is at 096a8472167..c96151d3350 main. > > Building the kernel on its own followed by building nvidia-driver in > the ports tree worked for me with no problems (but I didn't install > either one of them yet). --Chris