2003-08-18 Andreas Schwab <schwab@suse.de>

* libpei.h (bfd_pe_executable_p): Also recognize efi-app
	executables.
This commit is contained in:
H.J. Lu
2003-08-18 18:26:56 +00:00
parent 954a4db8ea
commit 4091ea4e21
2 changed files with 8 additions and 1 deletions

View File

@@ -332,4 +332,6 @@ bfd_boolean _bfd_XX_bfd_copy_private_section_data
PARAMS ((bfd *, asection *, bfd *, asection *));
/* Macro: Returns true if the bfd is a PE executable as opposed to a PE object file. */
#define bfd_pe_executable_p(abfd) (strncmp ((abfd)->xvec->name, "pei-", 4) == 0)
#define bfd_pe_executable_p(abfd) \
(strncmp ((abfd)->xvec->name, "pei-", 4) == 0 \
|| strncmp ((abfd)->xvec->name, "efi-app-", 8) == 0)