Lines Matching refs:executable
114 def _get_so_libs(executable): argument
123 ldd_output = subprocess.check_output(["ldd", executable]).decode('utf-8')
132 print("%s had no associated libraries (static build?)" % (executable))
163 def _check_binfmt_misc(executable): argument
175 binary = os.path.basename(executable)
191 if interp and interp != executable:
193 (binary, executable, interp))
543 if args.executable:
547 ff, enabled = _check_binfmt_misc(args.executable)
554 tmp_tar.add(args.executable, arcname=ff)
557 libs = _get_so_libs(args.executable)