From owner-freebsd-questions@freebsd.org Thu Jul 18 19:54:52 2019 Return-Path: Delivered-To: freebsd-questions@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 3150CAFD94 for ; Thu, 18 Jul 2019 19:54:52 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from dnvrco-cmomta03.email.rr.com (dnvrco-outbound-snat.email.rr.com [107.14.73.231]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "Client", Issuer "CA" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id B87E16F3BB for ; Thu, 18 Jul 2019 19:54:49 +0000 (UTC) (envelope-from mueller6722@twc.com) Received: from localhost ([96.28.161.151]) by cmsmtp with ESMTP id oCM1hEUoVWnTioCM4h5tlN; Thu, 18 Jul 2019 19:46:16 +0000 Date: Thu, 18 Jul 2019 19:44:43 +0000 From: "Thomas Mueller" To: freebsd-questions@freebsd.org Subject: Re: Cannot build generic kernel References: <100.908e0e00be82305d.007@88watts.net> X-CMAE-Envelope: MS4wfDX9mwmhsY4H6qJtX1E3lVpfOpGVlUVHF3VSNlyF9c8MWMOT/GZG2hQdvxgqDrU/xjPGDSvCNSwcs/o0wj4VqpDUlt66A5MgMmsKoXIaQNEQ3gSmM9pR bVtfUFZRntX60vo/EmG5VtENv6CZZ9//wp5wLbJGC8tJYvI9PFePon5A/ncQ/stdg25DsQ9OCdguzA== X-Rspamd-Queue-Id: B87E16F3BB X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org; spf=pass (mx1.freebsd.org: domain of mueller6722@twc.com designates 107.14.73.231 as permitted sender) smtp.mailfrom=mueller6722@twc.com X-Spamd-Result: default: False [-2.90 / 15.00]; ARC_NA(0.00)[]; NEURAL_HAM_MEDIUM(-0.99)[-0.986,0]; RCVD_COUNT_TWO(0.00)[2]; FROM_HAS_DN(0.00)[]; R_SPF_ALLOW(-0.20)[+ip4:107.14.73.0/24]; FREEMAIL_FROM(0.00)[twc.com]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; DMARC_NA(0.00)[twc.com]; RCPT_COUNT_ONE(0.00)[1]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; MISSING_MID(2.50)[]; TO_MATCH_ENVRCPT_ALL(0.00)[]; MX_GOOD(-0.01)[dnvrco-cmedge01.email.rr.com,dnvrco-cmedge02.email.rr.com]; NEURAL_HAM_SHORT(-0.70)[-0.703,0]; RCVD_IN_DNSWL_NONE(0.00)[231.73.14.107.list.dnswl.org : 127.0.5.0]; RCVD_TLS_LAST(0.00)[]; RECEIVED_SPAMHAUS_PBL(0.00)[151.161.28.96.zen.spamhaus.org : 127.0.0.10]; R_DKIM_NA(0.00)[]; FREEMAIL_ENVFROM(0.00)[twc.com]; ASN(0.00)[asn:7843, ipnet:107.14.73.0/24, country:US]; MIME_TRACE(0.00)[0:+]; IP_SCORE(-2.40)[ip: (-6.62), ipnet: 107.14.73.0/24(-2.96), asn: 7843(-2.37), country: US(-0.05)]; FROM_EQ_ENVFROM(0.00)[] X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Jul 2019 19:54:52 -0000 from David Azarewicz: > I downloaded and installed FreeBSD-12.0-RELEASE-i386-memstick.img > I checked out base/stable/12 r350009 using svnlite > I followed the directions on https://www.freebsd.org/doc/handbook/kernelconfig-building.html > for building the kernel. > I get an error: > make[2]: "/usr/src/sys/conf/kern.pre.mk" line 127: amd64/arm64/i386 kernel requires linker > ifunc support > both > make buildkernel > and > make buildkernel KERNCONF=GENERIC > fail exactly the same way. > Today I updated to r350112 and the problem persists. > So I have a fresh unmodified install of FreeBSD 12.0 RELEASE, I have a fresh unmodified > checkout of FreeBSD 12 stable, I followed the directions for building the standard, default, > generic kernel and it fails. I tried searching for a solution to this problem and could not find a > solution. How can I fix this problem? Did you make buildworld before attempting buildkernel? I read UPDATING in the top directory of the src tree, and you are supposed to "make buildworld" before buildkernel. That would put updated tools in place for buildkernel. Tom