CMake File API "no reply dir found"

Viewed 1459

I have trouble using toolchains in Docker from CLION. My Docker container is based on ubuntu 18.04 and CMake 3.17 is installed. The image definition is based on this reference implementation.

When I reload the CMake project with CLion, the following error is shown.

-- Build files have been written to: /tmp/tmp.vmmD6opEtD/cmake-build-debug-local-docker
CMake File API: /path/to/glow/cmake-build-debug-local-docker: no reply dir found

When I configure the CMake project in the Docker container directly, it succeeded. I believe there is nothing wrong with the CMake project itself.

What does "no reply dir found" mean? There is no clue for this error message even with googling.

2 Answers

I had the exact same error, in my case setting up SSH to avoid asking for passphrase, that is on a terminal run ssh-add then try to reload the CMake project

Just had the same problem. Your build dir in clion cmake project settings is other than the one appear in the cmake options specified there.

Related