error: Could not open file /home/cuke/work/paho.mqtt.cpp/build/doc/doc/html/toc.xml for writing Exiting... make[2]: *** [doc/CMakeFiles/Doxyfile.cmake.target.dir/build.make:58: doc/CMakeFiles/Doxyfile.cmake.target] Error 1 make[1]: *** [CMakeFiles/Makefile2:322: doc/CMakeFiles/Doxyfile.cmake.target.dir/all] Error 2 make: *** [Makefile:152: all] Error 2
时间: 2023-08-07 07:07:42 浏览: 208
cuke0001 (1).apk
这个错误提示显示在构建paho-mqtt C++库时生成文档时发生了错误。您可以尝试跳过生成文档的步骤并继续构建paho-mqtt C++库。在运行cmake命令时,可以添加-DPAHO_BUILD_DOCUMENTATION=FALSE选项来禁用文档生成,例如:
```
cmake -DPAHO_BUILD_DOCUMENTATION=FALSE ..
```
这将禁用文档生成并允许您继续构建paho-mqtt C++库。
阅读全文