Open AeneasZhu opened 1 month ago
After I run the following command on my Windows Powershell
cmake -B build -DGGML_CUDA=ON cmake --build build --config Release
it finally pops up " Error C3688 invalid literal suffix" as I posted in other issues
Please, anyone who could help fix this problem. Thank you in advance.
It‘s a small codepage problem, you can just simply add add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>") at the begining of the CMakeList.txt in src folder.
add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
After I run the following command on my Windows Powershell
it finally pops up " Error C3688 invalid literal suffix" as I posted in other issues
Please, anyone who could help fix this problem. Thank you in advance.