Replies: 1 comment 2 replies
-
It probably needs a bit more detail on how your build machine is set up. The official builds just checkout the repo and build it for centos/7 fine (also for centos/6 using the same approach for some Enterprise packages I maintain): git checkout https://github.com/fluent/fluent-bit.git
./fluent-bit/packaging/build.sh -d centos/7 This uses a container to build each target (to provide a clean build from a base image plus allow us to run on generic ephemeral Github runners). What do you do? We made some changes on the dependencies a while back to properly support Golang plugin builds, plus the dependencies themselves are also versioned/updated independently. What versions (if any) of cmetrics and cfl are you installing locally? |
Beta Was this translation helpful? Give feedback.
-
Hello,
Since version 2.0.7 we can no longer build on centos 6 and 7. It seems the reason is the missing folder:
lib/cfl/lib/xxhash/cli .
Snippet:
CMake Error at lib/cfl/lib/xxhash/cmake_unofficial/CMakeLists.txt:91 (add_executable):
Cannot find source file:
/app/fluent-bit-2.0.8/lib/cfl/lib/xxhash/cli/xxhsum.c
Tried extensions .c .C .c++ .cc .cpp .cxx .cu .m .M .mm .h .hh .h++ .hm
.hpp .hxx .in .txx
CMake Error at lib/cfl/lib/xxhash/cmake_unofficial/CMakeLists.txt:91 (add_executable):
No SOURCES given to target: xxhsum
Can you please reinclude the cli folder for xxhash?
Beta Was this translation helpful? Give feedback.
All reactions