Return commandline representation used to determine if a file needs to be recompiled
(cc_args, extra_postargs, pp_opts)
| 580 | return direcs |
| 581 | |
| 582 | def _commandline_dep_string(cc_args, extra_postargs, pp_opts): |
| 583 | """ |
| 584 | Return commandline representation used to determine if a file needs |
| 585 | to be recompiled |
| 586 | """ |
| 587 | cmdline = 'commandline: ' |
| 588 | cmdline += ' '.join(cc_args) |
| 589 | cmdline += ' '.join(extra_postargs) |
| 590 | cmdline += ' '.join(pp_opts) + '\n' |
| 591 | return cmdline |
| 592 | |
| 593 | |
| 594 | def get_dependencies(sources): |
no test coverage detected