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
@yurivict
I have encountered the same problem. Whether you have solved it or not, I think my answer can help people who encounter this problem in the future. This problem is because when running "cmake ..", one of the commands is to download a github file with curl. Some networks can not connect to github smoothly. When the download fails, it will continue to run. When you run "cmake .." again, you will not run the curl command again, so you will directly report this error every time you run.
resolvent:
Because I forgot which file the curl command is in, I deleted and recreated the build folder. Then run "camke .." again. Then you will see the output of curl. The line above this should be his command. Then use "grep - rn The CurlCommand", and you will know which line of the file this command is in and the URL where curl downloads the file. You can download the URL manually through a network that can access github. Then replace the curl command in the file with the cp command. Of course, remember to delete the curl option.
There are several similar curl commands in the process of "camke ..", which can be solved in the same way.
configure fails with the message:
This repository doesn't contain
external/install/src/rapmap/RapMapFileSystem.cpp
and there are no git submodules.The text was updated successfully, but these errors were encountered: