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

Equivalent of "catkin_make -DCMAKE_BUILD_TYPE=Release" with catkin build?

asked 2018-12-06 04:22:14 -0500

fabriceN gravatar image

updated 2021-09-15 09:36:39 -0500

lucasw gravatar image

For a release configuration with optimizations and no debugging symbols, I can use the Release build type:

catkin_make -DCMAKE_BUILD_TYPE=Release

Is there an equivalent command line with catkin build?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
6

answered 2018-12-06 04:31:17 -0500

aPonza gravatar image

updated 2020-06-05 14:22:23 -0500

lucasw gravatar image

Use the following:

catkin config --cmake-args -DCMAKE_BUILD_TYPE=Release

EDIT: you might want to look into the docs.

RE single package: I think that is simply done by catkin build <package you want to optimize> with the flag and removing the CMake flag when building the others. Also note that you should comment under my answer, not post a new answer...and possibly accept the answer if I solved your issue.

edit flag offensive delete link more

Comments

@aPonza thank you very much, it works and do you know if it is possible to optimize a package only?

fabriceN gravatar image fabriceN  ( 2018-12-06 05:46:33 -0500 )edit

@aPonza yes I made a mistake when I replied ... Thanks again and you fully answered my question actually

fabriceN gravatar image fabriceN  ( 2018-12-06 07:11:55 -0500 )edit

Question Tools

3 followers

Stats

Asked: 2018-12-06 04:22:14 -0500

Seen: 13,881 times

Last updated: Sep 15 '21