From nobody Fri Nov 22 14:31:04 2024 X-Original-To: freebsd-current@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4XvyGz2Mrzz5dxwG for ; Fri, 22 Nov 2024 14:32:11 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from mailgate.Leidinger.net (mailgate.leidinger.net [IPv6:2a00:1828:2000:313::1:5]) (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 ECDSA (P-256) client-digest SHA256) (Client CN "mailgate.leidinger.net", Issuer "E6" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4XvyGy16k0z528P; Fri, 22 Nov 2024 14:32:10 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Authentication-Results: mx1.freebsd.org; none List-Id: Discussions about the use of FreeBSD-current List-Archive: https://lists.freebsd.org/archives/freebsd-current List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-current@FreeBSD.org MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=leidinger.net; s=outgoing-alex; t=1732285921; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=N9At8b3V+4AOep5XmobwT8YLnDnefnzN9GdKDHw0lLM=; b=BY9Mcee+ecewq4imrU8ghp42jqZ5wc87l06y7Ouf+ut0tKiKRXWlykjRUAzPhqPKg9uUzL TfItBHP/+ioTbv+UwkqUgbaHFumTTLpNNhy2CMqt+5M7z82qG0mmRQ8PG/X3WlgQHc/Xmv VkQ87SbCeH3tlfjhHQWoHyYxryKR9+BumleN/rFINahACVsDxWwRhJT4D8NZDUCRcxkDvU 3yBFSCcICCNfhyTs3Kkdn88ic1zfaOej9nCDQL2PK64J3rIyPC2jV69w0MV7vMU0jaJCy3 rOUvjOtcwcSR9v54sd/kqwLmtoDRvDghYdP3AuDxJppuNkwsw9DESNn1K6LiDw== Date: Fri, 22 Nov 2024 15:31:04 +0100 From: Alexander Leidinger To: Ed Maste Cc: Current FreeBSD Subject: Re: buildworld error ld: error: version script assignment of 'FBSD_1.5' to symbol 'getentropy' failed: symbol not defined In-Reply-To: References: <1221c0f9da65d606d6142623717819ab@Leidinger.net> Message-ID: <40856c3b233f6120e742763ca2eb0775@Leidinger.net> Organization: No organization, this is a private message. Content-Type: multipart/signed; protocol="application/pgp-signature"; boundary="=_92450f87b1e096e7c398bad3c944713a"; micalg=pgp-sha256 X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:34240, ipnet:2a00:1828::/32, country:DE] X-Rspamd-Queue-Id: 4XvyGy16k0z528P X-Spamd-Bar: ---- This is an OpenPGP/MIME signed message (RFC 4880 and 3156) --=_92450f87b1e096e7c398bad3c944713a Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Am 2024-11-22 14:08, schrieb Ed Maste: > On Thu, 21 Nov 2024 at 04:43, Alexander Leidinger > wrote: >> >> Hi, >> >> I get: >> ld: error: version script assignment of 'FBSD_1.5' to symbol >> 'getentropy' failed: symbol not defined >> cc: error: linker command failed with exit code 1 (use -v to see >> invocation) >> >> This is with src from 2024-11-20 1:39pm UTC. My last build / running >> world is from 2024-11-13 18:34pm UTC. > > I modified getentropy in that window to remove fallback code -- > 62dab3d016a on Nov 16. It builds and Jenkins was happy though so > perhaps something odd in your environment? I'm running a bisect on unmodified code (master). So there is a failure, and I can't tell right now which commit it is. Anyway, as this is master without my local changes, it has to me src.conf or similar: src.conf: ---snip--- WITHOUT_PROFILE=yes CFLAGS+=-DFTP_COMBINE_CWDS MALLOC_PRODUCTION=yes WITH_MALLOC_PRODUCTION=yes WITHOUT_LLVM_ASSERTIONS=yes KERNCONF=ANDROMEDA WITH_RETPOLINE=yes WITH_BIND_NOW=yes WITHOUT_CLEAN=yes FORTIFY_SOURCE=2 ## <------- maybe this? if yes: regression! LOADER_GZIP_SUPPORT=no LOADER_BZIP2_SUPPORT=no LOADER_BIOS_TEXTONLY=no LOADER_NFS_SUPPORT=no LOADER_TFTP_SUPPORT=no LOADER_CD9660_SUPPORT=no ---snip--- /etc/src-env.conf: ---snip--- WITH_META_MODE=yes ---snip--- /etc/make.conf: ---snip--- .if (!empty(.CURDIR:M/usr/src*) || !empty(.CURDIR:M/usr/obj*)) .if !defined(NOCCACHE) && exists(/usr/local/libexec/ccache/world/cc) CC:=${CC:C,^cc,/usr/local/libexec/ccache/world/cc,1} CXX:=${CXX:C,^c\+\+,/usr/local/libexec/ccache/world/c++,1} .endif .endif .if empty{.CURDIR:M/usr/src/sys/boot*} CPUTYPE?=native .endif . if !empty{.CURDIR:M/usr/src/*} CFLAGS+= -O2 -pipe .else CFLAGS+= -O2 -pipe -mtune=native #-fvectorize # -mfpmath=sse -msse2 .endif USA_RESIDENT=NO ENABLE_SUID_SSH=YES WITH_CCACHE_BUILD=yes ---snip--- Bye, Alexander. -- http://www.Leidinger.net Alexander@Leidinger.net: PGP 0x8F31830F9F2772BF http://www.FreeBSD.org netchild@FreeBSD.org : PGP 0x8F31830F9F2772BF --=_92450f87b1e096e7c398bad3c944713a Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc; size=833 Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEER9UlYXp1PSd08nWXEg2wmwP42IYFAmdAlboACgkQEg2wmwP4 2IYOKA/9EbITi24Rvlaqb8eBfHLMbDO8bkIILnJjtvMJ8JnkZKwKJsz8SDOr8orO UOOVwQy9kA4Ud2yxlhEgFFXUgVh4RXoyGDuaBOmr+wInwxfdZRP/Y9ZtDgNdIyRD tMNN1cl2iHibJy7l5jGCqTXy69RMBILkr84ULwC5Bu/HLzjMDxwAAROZCAEQQ1n5 NOUF0sSDnFWwxV6WwN2F9sriuPEqyt7s+m+KrLkyp1ggdyygO8QSHfDyj4PnpiCo C2a5lgrV2q2pysEFUs3QCMKobLI0/qhvrzrHtuIo48azcBR/Qz6BWBY5J2QyQcGG cx33JsWNe2KewPOewLlaMuUMazsY0erVMUu8frjqjkFVf68Lk+/AFJVMKTu59pdV kiul7AY+itBqscNvvDiL/vuEqtucjyGHPwz7CwfT1UEpJqaTiJd9cYwMs9nYhlYO eazyCIWX/BN7pfiIuZk59Uoket8CWaoetsadlVA0eoxjl3mOCsAAY3/96ryhB5SS 4ohjLVbTxZeTpIHb1OG6nRn3zabXMRPaEHknygpeTIax6diTqDH2IBODAJdBhQSU yifhtPUZI29j6RRm8pjAzba+JITwajpmeMwmVDTG51hy6df+w9zcGlzox5Fui1bj /s5IMzhevppInrNDUXANIC9feCPkMCjDIrTlSp6mLi+vYEFq4BY= =X9fU -----END PGP SIGNATURE----- --=_92450f87b1e096e7c398bad3c944713a--