2022-04-12 14:21:55 +03:00
|
|
|
#!/usr/bin/env python3
|
2019-11-21 04:21:44 +03:00
|
|
|
from __future__ import print_function
|
|
|
|
import argparse
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
2022-12-14 01:01:20 +03:00
|
|
|
from lib.config import PLATFORM
|
|
|
|
from lib.util import execute, get_linux_binaries, get_out_dir
|
2019-11-21 04:21:44 +03:00
|
|
|
|
|
|
|
def add_debug_link_into_binaries(directory, target_cpu, debug_dir):
|
2022-12-14 01:01:20 +03:00
|
|
|
for binary in get_linux_binaries():
|
2019-11-21 04:21:44 +03:00
|
|
|
binary_path = os.path.join(directory, binary)
|
|
|
|
if os.path.isfile(binary_path):
|
|
|
|
add_debug_link_into_binary(binary_path, target_cpu, debug_dir)
|
|
|
|
|
|
|
|
def add_debug_link_into_binary(binary_path, target_cpu, debug_dir):
|
2022-03-21 05:11:21 +03:00
|
|
|
if PLATFORM == 'linux' and target_cpu in ('x86', 'arm', 'arm64'):
|
2020-05-29 15:37:02 +03:00
|
|
|
# Skip because no objcopy binary on the given target.
|
|
|
|
return
|
|
|
|
|
2019-11-21 04:21:44 +03:00
|
|
|
debug_name = get_debug_name(binary_path)
|
|
|
|
# Make sure the path to the binary is not relative because of cwd param.
|
|
|
|
real_binary_path = os.path.realpath(binary_path)
|
2020-05-29 15:37:02 +03:00
|
|
|
cmd = ['objcopy', '--add-gnu-debuglink=' + debug_name, real_binary_path]
|
2019-11-21 04:21:44 +03:00
|
|
|
execute(cmd, cwd=debug_dir)
|
|
|
|
|
|
|
|
def get_debug_name(binary_path):
|
|
|
|
return os.path.basename(binary_path) + '.debug'
|
|
|
|
|
|
|
|
def main():
|
|
|
|
args = parse_args()
|
|
|
|
if args.file:
|
|
|
|
add_debug_link_into_binary(args.file, args.target_cpu, args.debug_dir)
|
|
|
|
else:
|
|
|
|
add_debug_link_into_binaries(args.directory, args.target_cpu,
|
|
|
|
args.debug_dir)
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser(description='Add debug link to binaries')
|
|
|
|
parser.add_argument('-d', '--directory',
|
|
|
|
help='Path to the dir that contains files to add links',
|
|
|
|
default=get_out_dir(),
|
|
|
|
required=False)
|
|
|
|
parser.add_argument('-f', '--file',
|
|
|
|
help='Path to a specific file to add debug link',
|
|
|
|
required=False)
|
|
|
|
parser.add_argument('-s', '--debug-dir',
|
|
|
|
help='Path to the dir that contain the debugs',
|
|
|
|
default=None,
|
|
|
|
required=True)
|
|
|
|
parser.add_argument('-v', '--verbose',
|
|
|
|
action='store_true',
|
|
|
|
help='Prints the output of the subprocesses')
|
|
|
|
parser.add_argument('--target-cpu',
|
|
|
|
default='',
|
|
|
|
required=False,
|
|
|
|
help='Target cpu of binaries to add debug link')
|
|
|
|
|
|
|
|
return parser.parse_args()
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|