You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I'm getting this errors when I try to build on FreeBSD 14.1:
gmake
cmake -B build
-- The C compiler identification is Clang 18.1.5
-- The CXX compiler identification is Clang 18.1.5
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working C compiler: /usr/bin/cc - skipped
-- Detecting C compile features
-- Detecting C compile features - done
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found Git: /usr/local/bin/git (found version "2.46.2")
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Failed
-- Check if compiler accepts -pthread
-- Check if compiler accepts -pthread - yes
-- Found Threads: TRUE
-- Warning: ccache not found - consider installing it for faster compilation or disable this warning with GGML_CCACHE=OFF
-- CMAKE_SYSTEM_PROCESSOR: amd64
-- Including CPU backend
-- Found OpenMP_C: -fopenmp=libomp (found version "5.1")
-- Found OpenMP_CXX: -fopenmp=libomp (found version "5.1")
-- Found OpenMP: TRUE (found version "5.1")
-- x86 detected
-- Adding CPU backend variant ggml-cpu: -march=native
-- Looking for pthread_create in pthreads
-- Looking for pthread_create in pthreads - not found
-- Looking for pthread_create in pthread
-- Looking for pthread_create in pthread - found
-- Configuring done (0.9s)
-- Generating done (0.0s)
-- Build files have been written to: /home/leonardo/whisper.cpp/build
cmake --build build --config Release
gmake[1]: se entra en el directorio '/usr/home/leonardo/whisper.cpp/build'
[ 2%] Building C object ggml/src/CMakeFiles/ggml-base.dir/ggml.c.o
[ 4%] Building C object ggml/src/CMakeFiles/ggml-base.dir/ggml-alloc.c.o
[ 7%] Building CXX object ggml/src/CMakeFiles/ggml-base.dir/ggml-backend.cpp.o
In file included from /home/leonardo/whisper.cpp/ggml/src/ggml-backend.cpp:14:
In file included from /home/leonardo/whisper.cpp/ggml/src/ggml-impl.h:595:
In file included from /usr/include/c++/v1/vector:308:
In file included from /usr/include/c++/v1/__algorithm/copy.h:12:
/usr/include/c++/v1/__algorithm/copy_move_common.h:18:10: fatal error: '__string/constexpr_c_functions.h' file not found
18 | #include <__string/constexpr_c_functions.h>
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
gmake[3]: *** [ggml/src/CMakeFiles/ggml-base.dir/build.make:104: ggml/src/CMakeFiles/ggml-base.dir/ggml-backend.cpp.o] Error 1
gmake[2]: *** [CMakeFiles/Makefile2:1035: ggml/src/CMakeFiles/ggml-base.dir/all] Error 2
gmake[1]: *** [Makefile:146: all] Error 2
gmake[1]: se sale del directorio '/usr/home/leonardo/whisper.cpp/build'
gmake: *** [Makefile:8: build] Error 2
Any hint?
The text was updated successfully, but these errors were encountered:
Looking at the path /usr/include/c++ suggests that these headers are expected to be in the base system. One option could be to update the base system in case it has become corrupted for some reason:
Hi, I'm getting this errors when I try to build on FreeBSD 14.1:
Any hint?
The text was updated successfully, but these errors were encountered: