今天catkin build 整个工程,编译catkin_tools_prebuild时遇到失败的情况,如下:
The catkin CMake module was not found, but it is required to build a linked
workspace. To resolve this, please do one of the following, and try
building again.
1. Source the setup.sh file from an existing catkin workspace:
source SETUP_FILE
2. Extend another catkin workspace's result (install or devel) space:
catkin config --extend RESULT_SPACE
3. Set `catkin_DIR` to the directory containing `catkin-config.cmake`:
catkin config --cmake-args -Dcatkin_DIR=CATKIN_CMAKE_CONFIG_PATH
4. Add the catkin source package to your workspace's source space:
cd SOURCE_SPACE && git clone https://github.com/ros/catkin.git
根据提示的解决办法就是,加上下面的命令:
catkin config --extend /opt/ros/kinetic
原因分析:
出现上面的错误是由于你的编译环境没有找到ros,catkin config --extend 就是指定ros环境路径.。
我的ros环境就是/opt/ros/kinetic

------------------------------------还有下面的错误提示
By not providing "Findcatkin.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "catkin", but
CMake did not find one.
Could not find a package configuration file provided by "catkin" with any
of the following names:
catkinConfig.cmake
catkin-config.cmake
Add the installation prefix of "catkin" to CMAKE_PREFIX_PATH or set
"catkin_DIR" to a directory containing one of the above files. If "catkin"
provides a separate development package or SDK, be sure it has been
installed.
本文详细解析了在使用catkin_tools预构建时遇到的编译失败问题,并提供了四种有效的解决策略,包括设置catkin环境变量、扩展catkin工作空间、指定catkin_DIR路径以及添加catkin源代码到工作空间,帮助读者快速定位并解决问题。
3533

被折叠的 条评论
为什么被折叠?



