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

Compile rosmatlab with winros, or what is catkin_make_isolated?

asked 2014-03-25 05:50:42 -0500

bnm-rc gravatar image

updated 2014-03-25 23:20:00 -0500

Hi,
I'm compiling rosmatlab by the TU Darmstadt from source using winros. I already got to install it correctly in a Ubuntu environment with "original" ROS installed and I also got winros working on Windows 7. Now I'm following the steps I did to install rosmatlab on the Ubuntu system and am faced with a command called catkin_make_isolated which is described in section 3 (ROS) in the linked document.
Unfortunately, this command hasn't been rebuilt for winros and I don't even know how it actually differs from catkin_make. Can anybody tell me briefly what the differences are? Is it "easy" to find a workaround that works with catkin_make or should I take another approach on this?

Every suggestion is well appreciated.
Greets, Roberto

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2014-03-25 17:03:02 -0500

Daniel Stonier gravatar image

updated 2014-03-25 17:03:31 -0500

All of winros, catkin_make and catkin_make_isolated are just simple wrappers around callouts to cmake to build the projects. The first two, winros, catkin_make make a single cmake project of your entire source workspace. The latter, makes a cmake project for every package in your source workspace.

There is a REP explaining catkin_make_isolated in detail: http://www.ros.org/reps/rep-0134.html

You can also check the scripting for catkin_make_isolated (it's not too hard) in this function: https://github.com/ros/catkin/blob/in... .

The next question is, why use catkin_make_isolated? The main reason is to be able to build conventional cmake projects alongside catkin packages. What conventional cmake projects is rosmatlab trying to build? Perhaps they can be built and installed separately prior to a regular winros/catkin_make?

edit flag offensive delete link more

Comments

Thanks for your answer! The main reason why I considered using catkin_make_isolated is that it's described in the installation guide of rosmatlab. It's at the point where I want to compile ROS with another version of the boost libraries. But, as I realized while writing the answers to your questions, I don't need to build ROS, but winros, so the real question would be how I can compile winros with another version of the boost libraries.

bnm-rc gravatar image bnm-rc  ( 2014-03-26 00:02:54 -0500 )edit

The scripts win_ros uses to build boost 1.47 are clean.bat, download.bat, make.bat in https://github.com/ros-windows/win_ros/tree/hydro-devel/rosdeps/win_boost. This is cmake boost. You could change the download branch to 1.44 (it exists) and see how that goes (ymmv).

Daniel Stonier gravatar image Daniel Stonier  ( 2014-03-26 01:41:59 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2014-03-25 05:50:42 -0500

Seen: 803 times

Last updated: Mar 25 '14