--- old/src/utils/hsdis/hsdis.c 2020-05-12 22:08:31.423922500 +0900 +++ new/src/utils/hsdis/hsdis.c 2020-05-12 22:08:31.189548700 +0900 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2008, 2018, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * The Universal Permissive License (UPL), Version 1.0 @@ -568,7 +568,12 @@ dinfo->arch = bfd_get_arch(abfd); dinfo->mach = bfd_get_mach(abfd); dinfo->disassembler_options = disassembler_options; +#if BFD_VERSION >= 234000000 + /* bfd_octets_per_byte() has 2 args since binutils 2.34 */ + dinfo->octets_per_byte = bfd_octets_per_byte (abfd, NULL); +#else dinfo->octets_per_byte = bfd_octets_per_byte (abfd); +#endif dinfo->skip_zeroes = sizeof(void*) * 2; dinfo->skip_zeroes_at_end = sizeof(void*)-1; dinfo->disassembler_needs_relocs = FALSE;