Mono.Debugger.Backend.DwarfReader.IsSupported C# (CSharp) Method

IsSupported() public static method

public static IsSupported ( Bfd bfd ) : bool
bfd Bfd
return bool
        public static bool IsSupported(Bfd bfd)
        {
            if ((bfd.Target == "elf32-i386") || (bfd.Target == "elf64-x86-64"))
                return bfd.HasSection (".debug_info");
            else
                return false;
        }