ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I found the answer, thanks to osilva:) actually in the link below: http://wiki.ros.org/catkin/commands/catkin_make I ran the code below for building the actionlib_msgs first then doing the actual catkin_make is possible. pi@raspberrypi:~/catkin_ws $ catkin_make -DCATKIN_WHITELIST_PACKAGES="actionlib_msgs" Base path: /home/pi/catkin_ws Source space: /home/pi/catkin_ws/src Build space: /home/pi/catkin_ws/build Devel space: /home/pi/catkin_ws/devel Install space: /home/pi/catkin_ws/install

#

Running command: "cmake /home/pi/catkin_ws/src -DCATKIN_WHITELIST_PACKAGES=actionlib_msgs -DCATKIN_DEVEL_PREFIX=/home/pi/catkin_ws/devel -DCMAKE_INSTALL_PREFIX=/home/pi/catkin_ws/install -G Unix Makefiles" in "/home/pi/catkin_ws/build"

#

-- Using CATKIN_DEVEL_PREFIX: /home/pi/catkin_ws/devel -- Using CMAKE_PREFIX_PATH: /opt/ros/noetic -- This workspace overlays: /opt/ros/noetic -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.7.3", minimum required is "3") -- Using PYTHON_EXECUTABLE: /usr/bin/python3 -- Using Debian Python package layout -- Using empy: /usr/lib/python3/dist-packages/em.py -- Using CATKIN_ENABLE_TESTING: ON -- Call enable_testing() -- Using CATKIN_TEST_RESULTS_DIR: /home/pi/catkin_ws/build/test_results -- Forcing gtest/gmock from source, though one was otherwise available. -- Found gtest sources under '/usr/src/googletest': gtests will be built -- Found gmock sources under '/usr/src/googletest': gmock will be built -- Found PythonInterp: /usr/bin/python3 (found version "3.7.3") -- Using Python nosetests: /usr/bin/nosetests3 -- catkin 0.8.10 -- BUILD_SHARED_LIBS is on -- BUILD_SHARED_LIBS is on -- Using CATKIN_WHITELIST_PACKAGES: actionlib_msgs -- Configuring done -- Generating done -- Build files have been written to: /home/pi/catkin_ws/build

#

Running command: "make -j4 -l4" in "/home/pi/catkin_ws/build"

#

pi@raspberrypi:~/catkin_ws $ catkin_make Base path: /home/pi/catkin_ws Source space: /home/pi/catkin_ws/src Build space: /home/pi/catkin_ws/build Devel space: /home/pi/catkin_ws/devel Install space: /home/pi/catkin_ws/install

#

Running command: "cmake /home/pi/catkin_ws/src -DCATKIN_DEVEL_PREFIX=/home/pi/catkin_ws/devel -DCMAKE_INSTALL_PREFIX=/home/pi/catkin_ws/install -G Unix Makefiles" in "/home/pi/catkin_ws/build"

#

-- Using CATKIN_DEVEL_PREFIX: /home/pi/catkin_ws/devel -- Using CMAKE_PREFIX_PATH: /opt/ros/noetic -- This workspace overlays: /opt/ros/noetic -- Found PythonInterp: /usr/bin/python3 (found suitable version "3.7.3", minimum required is "3") -- Using PYTHON_EXECUTABLE: /usr/bin/python3 -- Using Debian Python package layout -- Using empy: /usr/lib/python3/dist-packages/em.py -- Using CATKIN_ENABLE_TESTING: ON -- Call enable_testing() -- Using CATKIN_TEST_RESULTS_DIR: /home/pi/catkin_ws/build/test_results -- Forcing gtest/gmock from source, though one was otherwise available. -- Found gtest sources under '/usr/src/googletest': gtests will be built -- Found gmock sources under '/usr/src/googletest': gmock will be built -- Found PythonInterp: /usr/bin/python3 (found version "3.7.3") -- Using Python nosetests: /usr/bin/nosetests3 -- catkin 0.8.10 -- BUILD_SHARED_LIBS is on -- BUILD_SHARED_LIBS is on -- Using CATKIN_WHITELIST_PACKAGES: actionlib_msgs -- Configuring done -- Generating done -- Build files have been written to: /home/pi/catkin_ws/build

#

Running command: "make -j4 -l4" in "/home/pi/catkin_ws/build"

#

pi@raspberrypi:~/catkin_ws $

Done!!!!!!!!! Thanks to all