installed build-essential but still get CXX compiler not found error
I am having the same problem I've seen from multiple posts from 2012 about CXX compiler not being found. I did run sudo apt-get install build-essential checkinstall
and still get the following when I run cmake
:
-- The CXX compiler identification is unknown
-- Check for working CXX compiler: /usr/local/bin/cl
CMake Error: your CXX compiler: "/usr/local/bin/cl" was not found. Please set CMAKE_CXX_COMPILER to a valid compiler path or name.
Where do I look for what is causing it to try to find "cl"?
Please add some more information: what platform is this, what OS, version of OS, version of ROS, how did you install it (from source, or debs), etc.
Also: why do you invoke
cmake
directly? Normal build steps for ROS pkgs do not include the user invokingcmake
directly, which is why I ask.