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 believe the problem here is that the ros install depends on c++11 features which are not available on your device. I solved this exact problem (on a beagleebone running wheezy) by adding this flag to the build command:

--cmake-args -DCMAKE_CXX_FLAGS=--std=c++0x

I believe the problem here is that the ros install depends on c++11 features which are not available on your device. I solved this exact problem (on a beagleebone running wheezy) by adding this flag to the build command:

--cmake-args -DCMAKE_CXX_FLAGS=--std=c++0x

I also needed to upgrade my boost library to 1.5.3 to get the entire install to complete. See http://yplam.com/ros/2017/03/19/edison-ros-install.html as well

I believe the problem here is that the ros install depends on c++11 features which are not available on your device. I solved this exact problem (on a beagleebone running wheezy) by adding this flag to the build command:

--cmake-args -DCMAKE_CXX_FLAGS=--std=c++0x

I also needed to upgrade my boost library to 1.5.3 1.53 to get the entire install to complete. See http://yplam.com/ros/2017/03/19/edison-ros-install.html as well

edit: I've been working through this on my beaglebone board throughout the day and actually couldn't push this all the way through. I'm going to leave my earlier reply in case it's helpful to someone, but it was easier for me to just upgrade my distro to jessie and just install kinetic...


I believe the problem here is that the ros install depends on c++11 features which are not available on your device. I solved this exact problem (on a beagleebone running wheezy) by adding this flag to the build command:

--cmake-args -DCMAKE_CXX_FLAGS=--std=c++0x

I also needed to upgrade my boost library to 1.53 to get the entire install to complete. See http://yplam.com/ros/2017/03/19/edison-ros-install.html as well