Posts

Showing posts with the label LLVM

vchiq_core.c FreeBSD 14.0-CURRENT has compile errors: git -C /usr/src pull --ff-only Jan 19 2024 update

 vchiq_core.c  FreeBSD 14.0-CURRENT has compile errors   Standard update to /usr/src  code to the latest git -C /usr/src pull --ff-only   time make -j4 buildkernel TARGET_ARCH=aarch64 KERNCONF=GENERIC-VCHIQ  Below is the output: So I have 3 choices,  edit the makefile and turn of the Warn Error message flags -Wall -Werror edit the source file and correct format statements Find the author of this modified file and ask about his setup to compile and then do the same setup  use KERNCONF=GENERIC?  This option did work to compile the FreeBSD kernel. So that I could start Poudriere to build GhostBSD arm64 packages. What is the proper way to compile this file?: https://cgit.freebsd.org/src/tree/sys/contrib/vchiq/interface/vchiq_arm/vchiq_core.c cc -target aarch64-unknown-freebsd14.0 --sysroot=/usr/obj/usr/src/arm64.aarch64/tmp -B/usr/obj/usr/src/arm64.aarch64/tmp/usr/bin -c -O2 -pipe  -fno-strict-aliasing  -g -nostdinc  -I. -I/usr/src...