What should I do if I encounter this error? All paths are correct. #1782
Closed
liaoran321
started this conversation in
General
Replies: 1 comment
-
The version of cmake you have installed must be cygwin/MSYS2 based, because it sees an absolute Windows path and tries to interpret it as a relative Linux path. You should install mingw-w64-x86_64-cmake instead. Or, just build in a Visual Studio Developer Command Prompt to use MSVC. If you have any further questions, please open an issue - this isn't what the discussions tab is for. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
-- Performing Test CMAKE_HAVE_LIBC_PTHREAD - Success
-- Found Threads: TRUE
CMake Error at /usr/share/cmake/Modules/FindVulkan.cmake:566 (file):
file STRINGS file
"/e/gpt4/gpt4all/gpt4all-backend/C:/VulkanSDK/1.3.268.0/include/vulkan/vulkan_core.h"
cannot be read.
Call Stack (most recent call first):
llama.cpp.cmake:157 (find_package)
CMakeLists.txt:46 (include)
CMake Error at /usr/share/cmake/Modules/FindVulkan.cmake:568 (file):
file STRINGS file
"/e/gpt4/gpt4all/gpt4all-backend/C:/VulkanSDK/1.3.268.0/include/vulkan/vulkan_core.h"
cannot be read.
Call Stack (most recent call first):
llama.cpp.cmake:157 (find_package)
CMakeLists.txt:46 (include)
CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find Vulkan (missing: Vulkan_LIBRARY) (found version "")
Call Stack (most recent call first):
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)
/usr/share/cmake/Modules/FindVulkan.cmake:600 (find_package_handle_standard_args)
llama.cpp.cmake:157 (find_package)
CMakeLists.txt:46 (include)
-- Configuring incomplete, errors occurred!
make: Makefile: No such file or directory
make: *** No rule to make target 'Makefile'. Stop.
liaor@liaoran MINGW64 /e/gpt4/gpt4all/gpt4all-backend/build
Beta Was this translation helpful? Give feedback.
All reactions