- Collate raw profiles into one indexed profile.
- Generate html reports for the given binaries.
+
+Caution: The positional arguments to this script must be specified before any
+optional arguments, such as --restrict.
'''
import argparse
help='Emit a unified report for all binaries')
parser.add_argument('--restrict', metavar='R', type=str, nargs='*',
default=[],
- help='Restrict the reporting to the given source paths')
+ help='Restrict the reporting to the given source paths'
+ ' (must be specified after all other positional arguments)')
args = parser.parse_args()
if args.use_existing_profdata and args.only_merge: