ZBLOG

The current CMakeCache.txt directory /home/yujie23/frugen/CMakeCache.txt is different than the directory /mnt/d/workspace/frugen where CMakeCache.txt was created. This may result in binaries being created in the wrong place. If you are not sure, r...

The warning message you are seeing indicates that the CMakeCache.txt file was created in a different directory than the one you are currently trying to use. This situation can lead to confusion or errors, as CMake may not be able to find the correct paths for your build files.

Here’s how you can resolve this issue:

  1. Delete CMakeCache.txt: Navigate to the directory where your CMakeCache.txt is located (/home/yujie23/frugen/) and delete it. You can do this by running:

    rm /home/yujie23/frugen/CMakeCache.txt
    
  2. Clear Build Directory (if necessary): If you have additional build artifacts that may cause conflicts, consider cleaning or deleting your entire build directory.

  3. Re-run CMake: After deleting the cache file, go back to your project directory (in this case, /mnt/d/workspace/frugen) and re-run the cmake command again:

    cd /mnt/d/workspace/frugen
    cmake .
    

    Or specify any other appropriate parameters if you’re building in a separate build directory:

    mkdir build
    cd build
    cmake ..
    
  4. Build Your Project: Once CMake successfully configures your project without warnings, you can then proceed with building it using:

    make
    

By following these steps, you should be able to fix the discrepancy between directories and ensure that all binaries and output files are created correctly in the intended location.


内容由零声教学AI助手提供,问题来源于学员提问

本站部分文章来源于网络,版权归原作者所有,如有侵权请联系站长删除。
转载请注明出处:https://golang.0voice.com/?id=20349

分享:
扫描分享到社交APP
上一篇
下一篇
发表列表
游客 游客
此处应有掌声~
评论列表

还没有评论,快来说点什么吧~

联系我们

在线咨询: 点击这里给我发消息

微信号:3007537140

上班时间: 10:30-22:30

关注我们
x

注册

已经有帐号?