Date: Sat, 3 Jul 2021 21:25:32 -0700 From: Mark Millard via freebsd-ports <freebsd-ports@freebsd.org> To: bob prohaska <fbsd@www.zefox.net> Cc: FreeBSD ports <freebsd-ports@freebsd.org>, freebsd-arm <freebsd-arm@freebsd.org>, FreeBSD Toolchain <freebsd-toolchain@freebsd.org> Subject: Re: llvm10 build failure on Rpi3 [You need to update /usr/local/poudriere/poudriere-system] Message-ID: <9780017D-5B26-4791-9397-3E721B578D55@yahoo.com> In-Reply-To: <ED4FA7D6-5F8B-427E-89A8-45BF2C913EBE@yahoo.com> References: <5A26965D-2DFD-4A46-A171-A382A61E3CFB@yahoo.com> <20210626035234.GA18893@www.zefox.net> <C64D1A3F-A42E-42E3-8491-4DE9F6A96CFB@yahoo.com> <43513842-6FC0-4A89-8F0C-9EB2B328A5ED@yahoo.com> <9CFE71E2-23C3-4072-A8AD-74EDB339A146@yahoo.com> <A4669E1F-6DA9-492C-B06C-12AABE60FCEB@yahoo.com> <F2A8E1C3-EAAD-448A-9A97-979CC9ED9BE7@yahoo.com> <60EEFD09-97DE-4B4F-BAFD-61B96EF60E27@yahoo.com> <F727FF9A-CDFB-4C9C-8333-0FEA6C54976A@yahoo.com> <77A35ACF-275F-44C8-AEEE-4EFE5B5CBEA4@yahoo.com> <20210703182546.GA17871@www.zefox.net> <380184FB-6BA1-4C2D-9C6B-E249C2CF1317@yahoo.com> <9CC00581-E8B4-45F0-A614-60A70E37B1B2@yahoo.com> <ED4FA7D6-5F8B-427E-89A8-45BF2C913EBE@yahoo.com>
index | next in thread | previous in thread | raw e-mail
On 2021-Jul-3, at 21:15, Mark Millard <marklmi@yahoo.com> wrote: > Summary: You need to update /usr/local/poudriere/poudriere-system > > Updating your HOST environment does not automatically update that > area. > > One possibility for an update procedure is: > > # cd /usr/src > # make installworld DESTDIR=/usr/local/poudriere/poudriere-system DB_FROM_SRC=1 > # make distrib-dirs DESTDIR=/usr/local/poudriere/poudriere-system DB_FROM_SRC=1 > # make distribution DESTDIR=/usr/local/poudriere/poudriere-system DB_FROM_SRC=1 > # make -DBATCH_DELETE_OLD_FILES delete-old DESTDIR=/usr/local/poudriere/poudriere-system DB_FROM_SRC=1 > > Sometime after after a poudriere bulk run completes: > > # make -DBATCH_DELETE_OLD_FILES delete-old-libs DESTDIR=/usr/local/poudriere/poudriere-system DB_FROM_SRC=1 > > > How I got there . . . > > Someone pointed out something that I'd not even thought to check > about your builds (that explains why your lang/rust did not fail > to build as well and a major difference in your poudriere vs. > make build tests and vs. my attempts to reproduce). Your log > still reports: > > Host OSVERSION: 1400024 > Jail OSVERSION: 1400019 > > 1400019 is from early June: > > committer Neel Chauhan <nc@FreeBSD.org> 2021-06-07 22:53:24 +0000 > commit 37d64dcdfa519157aff9711f1f226ad7bd778f46 (patch) > > That Jail version of the system predates using llvm12 > as the system compiler. 1400023 was the switch to llvm12: > > committer Dimitry Andric <dim@FreeBSD.org> 2021-06-13 20:01:15 +0000 > commit d409305fa3838fb39b38c26fc085fb729b8766d5 (patch) > > This means that the direct make build of devel/llvm10 > was based on using system clang 12, not what you have > poudriere using. > > You should have (using things as they happen to > be available to install now): > > Host OSVERSION: 1400024 > Jail OSVERSION: 1400024 I forgot to quote the OSVERSION in: ---Begin Environment--- SHELL=/bin/csh OSVERSION=1400019 UNAME_v=FreeBSD 14.0-CURRENT UNAME_r=14.0-CURRENT . . . > In other words: equal unless you have good reason to be > building older materials. > > > So we see that your poudriere bulk builds are based on clang 11, > not clang 12, according to the log file: > > _CCVERSION_921dbbb2=FreeBSD clang version 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe) Target: aarch64-unknown-freebsd14.0 Thread model: posix InstalledDir: /usr/bin > _ALTCCVERSION_921dbbb2=none > _CXXINTERNAL_acaad9ca=FreeBSD clang version 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe) Target: aarch64-unknown-freebsd14.0 Thread model: posix InstalledDir: /usr/bin "/usr/bin/ld" "--eh-frame-hdr" "-dynamic-linker" "/libexec/ld-elf.so.1" "--enable-new-dtags" "-o" "a.out" "/usr/lib/crt1.o" "/usr/lib/crti.o" "/usr/lib/crtbegin.o" "-L/usr/lib" "/dev/null" "-lc++" "-lm" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "-lc" "-lgcc" "--as-needed" "-lgcc_s" "--no-as-needed" "/usr/lib/crtend.o" "/usr/lib/crtn.o" > . . . > _OBJC_CCVERSION_921dbbb2=FreeBSD clang version 11.0.1 (git@github.com:llvm/llvm-project.git llvmorg-11.0.1-0-g43ff75f2c3fe) Target: aarch64-unknown-freebsd14.0 Thread model: posix InstalledDir: /usr/bin > . . . I forgot to quote another OSVERSION: . . . ARCH=aarch64 OPSYS=FreeBSD _OSRELEASE=14.0-CURRENT OSREL=14.0 OSVERSION=1400019 . . . > -- The C compiler identification is Clang 11.0.1 > -- The CXX compiler identification is Clang 11.0.1 > -- The ASM compiler identification is Clang > . . . === Mark Millard marklmi at yahoo.com ( dsl-only.net went away in early 2018-Mar)home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?9780017D-5B26-4791-9397-3E721B578D55>
