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

rosinstall gcc invocations?

asked 2012-03-05 04:04:12 -0500

damonkohler gravatar image

I'd like to have the gcc invocations that result from a rosinstall command printed to stdout. Is that possible?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
2

answered 2012-03-05 10:01:49 -0500

kwc gravatar image

updated 2012-03-06 05:44:24 -0500

Not that I know of. rosinstall doesn't call gcc directly, anyways. it just calls through to rosmake. Thus, you can have the same net effect by calling rosinstall with -n (no build) and then calling rosmake as you see fit.

rosinstall is moving away from any invocations of build infrastructure starting with ROS Fuerte. The old calls were a result of bootstrapping issues. The catkin-based stuff runs rosinstall with no build (-n option).

EDIT: to see the output from rosmake:

VERBOSE=1 rosmake -V
edit flag offensive delete link more

Comments

Let me clarify. I'm not really fussed about who calls gcc, but I'd like to see all gcc invocations for a ROS build logged to stdout. What's the best way to do that?

damonkohler gravatar image damonkohler  ( 2012-03-05 21:05:03 -0500 )edit

VERBOSE=1 rosmake -V will put all console outputs to screen

tfoote gravatar image tfoote  ( 2012-03-08 15:40:04 -0500 )edit

Question Tools

Stats

Asked: 2012-03-05 04:04:12 -0500

Seen: 441 times

Last updated: Mar 06 '12