Re: f81be7a8318b installworld failed
- Reply: Graham Perrin : "Re: f81be7a8318b installworld failed"
- In reply to: Graham Perrin : "f81be7a8318b installworld failed"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 29 Jun 2023 18:12:04 UTC
On 6/29/23 13:10, Graham Perrin wrote: > … > ===> stand/efi/loader_4th (install) > installing DIRS BINDIR > install -d -m 0755 -o root -g wheel /boot > /usr/local/bin/ccache cc -target x86_64-unknown-freebsd14.0 > --sysroot=/usr/obj/usr/src/amd64.amd64/tmp > -B/usr/obj/usr/src/amd64.amd64/tmp/usr/bin -O2 -pipe -O3 -pipe > -march=native -mtune=native -fno-common -Wformat -fshort-wchar > -mno-red-zone -nostdinc -I/usr/obj/usr/src/amd64.amd64/stand/libsa > -I/usr/src/stand/libsa -D_STANDALONE -I/usr/src/sys > -Ddouble=jagged-little-pill -Dfloat=floaty-mcfloatface > -ffunction-sections -fdata-sections -DLOADER_GELI_SUPPORT > -I/usr/src/stand/libsa/geli -DLOADER_DISK_SUPPORT -ffreestanding > -mno-mmx -mno-sse -mno-avx -mno-avx2 -msoft-float -fPIC -mno-red-zone > -mno-relax -I. -Iinclude -I/usr/src/stand/efi/loader_4th/../loader > -I/usr/src/stand/libsa/zfs -I/usr/src/sys/contrib/openzfs/include > -I/usr/src/sys/contrib/openzfs/include/os/freebsd/zfs -DEFI_ZFS_BOOT > -fPIC -I/usr/src/stand/efi/loader_4th > -I/usr/src/stand/efi/loader_4th/arch/amd64 -I/usr/src/stand/efi/include > -I/usr/src/stand/efi/include/amd64 > -I/usr/src/sys/contrib/dev/acpica/include -I/usr/src/stand/i386/libi386 > -DEFI -I/usr/src/stand/common -fPIC -I/usr/src/stand/ficl > -I/usr/src/stand/ficl/amd64 -I/usr/src/stand/common -DBF_DICTSIZE=30000 > -DLOADER_MSDOS_SUPPORT -DLOADER_UFS_SUPPORT -DLOADER_NET_SUPPORT > -DLOADER_GPT_SUPPORT -DLOADER_MBR_SUPPORT -DLOADER_ZFS_SUPPORT > -I/usr/src/stand/libsa/zfs -I/usr/src/sys/cddl/boot/zfs > -I/usr/src/sys/cddl/contrib/opensolaris/uts/common > -DHELP_FILENAME=\"loader.help.efi\" -g -gz=zlib -std=gnu99 > -Wno-format-zero-length -Wsystem-headers -Werror -Wno-pointer-sign > -Wdate-time -Wno-empty-body -Wno-string-plus-int > -Wno-unused-const-variable -Wno-error=unused-but-set-variable > -Wno-error=unused-but-set-parameter -Wno-tautological-compare > -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function > -Wno-enum-conversion -Wno-unused-local-typedef > -Wno-address-of-packed-member -Wno-switch -Wno-switch-enum > -Wno-knr-promoted-parameter -Wno-parentheses -Oz -Qunused-arguments > -I/usr/src/sys/teken -I/usr/src/contrib/pnglite > ERROR-tried-to-rebuild-during-make-install -c > /usr/src/stand/efi/loader_4th/../loader/bootinfo.c -o bootinfo.o > clang: error: no such file or directory: > 'ERROR-tried-to-rebuild-during-make-install' > *** [bootinfo.o] Error code 1 This error indicates that for some reason we're trying to build during the install phase; either tree was updated since last build, messed up timestamps on build artifacts, messed up clock, etc. Whatever the case may be, make(1) sees the build output of this as out-of-date. Thanks, Kyle Evans