Home | History | Annotate | Download | only in win

Lines Matching refs:executable

15 # The default relink executable to use to reorder binaries.
38 def _ReorderBinary(relink_exe, executable, symbol, destination_dir):
39 """Reorders the executable found in input_dir, and writes the resultant
40 reordered executable and symbol files to destination_dir.
42 If a file named <executable>-order.json exists, imposes that order on the
47 '--input-image=%s' % executable,
50 os.path.join(destination_dir, os.path.basename(executable))),
54 # Check whether there's an order file available for the executable.
55 order_file = '%s-order.json' % executable
59 os.path.basename(executable),
64 _LOGGER.info('Randomly reordering "%s"', executable)
89 help='The path to the input executable.')
100 option_parser.error('You must provide an input executable.')