Skip to content

Commit

Permalink
Update 1 package
Browse files Browse the repository at this point in the history
binutils (2.43.1-1 -> 2.44-1)

Signed-off-by: Git for Windows Build Agent <[email protected]>
  • Loading branch information
Git for Windows Build Agent committed Feb 3, 2025
1 parent 9214ac7 commit afbf678
Show file tree
Hide file tree
Showing 146 changed files with 795 additions and 811 deletions.
Binary file modified usr/bin/addr2line.exe
Binary file not shown.
Binary file modified usr/bin/ar.exe
Binary file not shown.
Binary file modified usr/bin/as.exe
Binary file not shown.
Binary file modified usr/bin/c++filt.exe
Binary file not shown.
Binary file modified usr/bin/dlltool.exe
Binary file not shown.
Binary file modified usr/bin/dllwrap.exe
Binary file not shown.
Binary file modified usr/bin/elfedit.exe
Binary file not shown.
Binary file modified usr/bin/gprof.exe
Binary file not shown.
Binary file modified usr/bin/ld.bfd.exe
Binary file not shown.
Binary file modified usr/bin/ld.exe
Binary file not shown.
Binary file modified usr/bin/nm.exe
Binary file not shown.
Binary file modified usr/bin/objcopy.exe
Binary file not shown.
Binary file modified usr/bin/objdump.exe
Binary file not shown.
Binary file modified usr/bin/ranlib.exe
Binary file not shown.
Binary file modified usr/bin/readelf.exe
Binary file not shown.
Binary file modified usr/bin/size.exe
Binary file not shown.
Binary file modified usr/bin/strings.exe
Binary file not shown.
Binary file modified usr/bin/strip.exe
Binary file not shown.
Binary file modified usr/bin/windmc.exe
Binary file not shown.
Binary file modified usr/bin/windres.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion usr/include/ansidecl.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Compiler compatibility macros
Copyright (C) 1991-2024 Free Software Foundation, Inc.
Copyright (C) 1991-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
This program is free software; you can redistribute it and/or modify
Expand Down
96 changes: 29 additions & 67 deletions usr/include/bfd.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

/* Main header file for the bfd library -- portable access to object files.
Copyright (C) 1990-2024 Free Software Foundation, Inc.
Copyright (C) 1990-2025 Free Software Foundation, Inc.
Contributed by Cygnus Support.
Expand Down Expand Up @@ -811,7 +811,6 @@ typedef struct bfd_section

/* A symbol which points at this section only. */
struct bfd_symbol *symbol;
struct bfd_symbol **symbol_ptr_ptr;

/* Early in the link process, map_head and map_tail are used to build
a list of input sections attached to an output section. Later,
Expand Down Expand Up @@ -926,6 +925,9 @@ extern asection _bfd_std_section[4];
#define BFD_COM_SECTION_NAME "*COM*"
#define BFD_IND_SECTION_NAME "*IND*"

/* GNU object-only section name. */
#define GNU_OBJECT_ONLY_SECTION_NAME ".gnu_object_only"

/* Pointer to the common section. */
#define bfd_com_section_ptr (&_bfd_std_section[0])
/* Pointer to the undefined section. */
Expand Down Expand Up @@ -1002,8 +1004,8 @@ discarded_section (const asection *sec)
/* target_index, used_by_bfd, constructor_chain, owner, */ \
0, NULL, NULL, NULL, \
\
/* symbol, symbol_ptr_ptr, */ \
(struct bfd_symbol *) SYM, &SEC.symbol, \
/* symbol, */ \
(struct bfd_symbol *) SYM, \
\
/* map_head, map_tail, already_assigned, type */ \
{ NULL }, { NULL }, NULL, 0 \
Expand Down Expand Up @@ -1260,6 +1262,11 @@ typedef struct _symbol_info
const char *stab_name; /* String for stab type. */
} symbol_info;

/* An empty string that will not match the address of any other
symbol name, even unnamed local symbols which will also have empty
string names. This can be used to flag a symbol as corrupt if its
name uses an out of range string table index. */
extern const char bfd_symbol_error_name[];
#define bfd_get_symtab_upper_bound(abfd) \
BFD_SEND (abfd, _bfd_get_symtab_upper_bound, (abfd))

Expand Down Expand Up @@ -1797,10 +1804,6 @@ enum bfd_architecture
#define bfd_mach_aarch64_8R 1
#define bfd_mach_aarch64_ilp32 32
#define bfd_mach_aarch64_llp64 64
bfd_arch_nios2, /* Nios II. */
#define bfd_mach_nios2 0
#define bfd_mach_nios2r1 1
#define bfd_mach_nios2r2 2
bfd_arch_visium, /* Visium. */
#define bfd_mach_visium 1
bfd_arch_wasm32, /* WebAssembly. */
Expand Down Expand Up @@ -1962,7 +1965,8 @@ enum bfd_lto_object_type
lto_non_object, /* Not an LTO object. */
lto_non_ir_object, /* An object without LTO IR. */
lto_slim_ir_object, /* A slim LTO IR object. */
lto_fat_ir_object /* A fat LTO IR object. */
lto_fat_ir_object, /* A fat LTO IR object. */
lto_mixed_object /* A mixed LTO IR object. */
};

struct bfd_mmapped_entry
Expand Down Expand Up @@ -2185,7 +2189,7 @@ struct bfd
unsigned int read_only : 1;

/* LTO object type. */
ENUM_BITFIELD (bfd_lto_object_type) lto_type : 2;
ENUM_BITFIELD (bfd_lto_object_type) lto_type : 3;

/* Set if this BFD is currently being processed by
bfd_check_format_matches. This is checked by the cache to
Expand Down Expand Up @@ -2217,6 +2221,9 @@ struct bfd
/* The last section on the section list. */
struct bfd_section *section_last;

/* The object-only section on the section list. */
struct bfd_section *object_only_section;

/* The number of sections. */
unsigned int section_count;

Expand Down Expand Up @@ -2790,6 +2797,8 @@ bfd_vma bfd_emul_get_commonpagesize (const char *);

char *bfd_demangle (bfd *, const char *, int);

asymbol *bfd_group_signature (asection *group, asymbol **isympp);

/* Extracted from bfdio.c. */
bfd_size_type bfd_read (void *, bfd_size_type, bfd *)
ATTRIBUTE_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -3006,9 +3015,6 @@ bool bfd_merge_private_bfd_data
(ibfd, info))

/* Extracted from opncls.c. */
/* Set to N to open the next N BFDs using an alternate id space. */
extern unsigned int bfd_use_reserved_id;

bfd *bfd_fopen (const char *filename, const char *target,
const char *mode, int fd);

Expand Down Expand Up @@ -3076,6 +3082,9 @@ char *bfd_follow_build_id_debuglink (bfd *abfd, const char *dir);

const char *bfd_set_filename (bfd *abfd, const char *filename);

const char *bfd_extract_object_only_section
(bfd *abfd);

/* Extracted from reloc.c. */
typedef enum bfd_reloc_status
{
Expand Down Expand Up @@ -6159,60 +6168,6 @@ enum bfd_reloc_code_real
BFD_RELOC_MSP430_SET_ULEB128,
BFD_RELOC_MSP430_SUB_ULEB128,

/* Relocations used by the Altera Nios II core. */
BFD_RELOC_NIOS2_S16,
BFD_RELOC_NIOS2_U16,
BFD_RELOC_NIOS2_CALL26,
BFD_RELOC_NIOS2_IMM5,
BFD_RELOC_NIOS2_CACHE_OPX,
BFD_RELOC_NIOS2_IMM6,
BFD_RELOC_NIOS2_IMM8,
BFD_RELOC_NIOS2_HI16,
BFD_RELOC_NIOS2_LO16,
BFD_RELOC_NIOS2_HIADJ16,
BFD_RELOC_NIOS2_GPREL,
BFD_RELOC_NIOS2_UJMP,
BFD_RELOC_NIOS2_CJMP,
BFD_RELOC_NIOS2_CALLR,
BFD_RELOC_NIOS2_ALIGN,
BFD_RELOC_NIOS2_GOT16,
BFD_RELOC_NIOS2_CALL16,
BFD_RELOC_NIOS2_GOTOFF_LO,
BFD_RELOC_NIOS2_GOTOFF_HA,
BFD_RELOC_NIOS2_PCREL_LO,
BFD_RELOC_NIOS2_PCREL_HA,
BFD_RELOC_NIOS2_TLS_GD16,
BFD_RELOC_NIOS2_TLS_LDM16,
BFD_RELOC_NIOS2_TLS_LDO16,
BFD_RELOC_NIOS2_TLS_IE16,
BFD_RELOC_NIOS2_TLS_LE16,
BFD_RELOC_NIOS2_TLS_DTPMOD,
BFD_RELOC_NIOS2_TLS_DTPREL,
BFD_RELOC_NIOS2_TLS_TPREL,
BFD_RELOC_NIOS2_COPY,
BFD_RELOC_NIOS2_GLOB_DAT,
BFD_RELOC_NIOS2_JUMP_SLOT,
BFD_RELOC_NIOS2_RELATIVE,
BFD_RELOC_NIOS2_GOTOFF,
BFD_RELOC_NIOS2_CALL26_NOAT,
BFD_RELOC_NIOS2_GOT_LO,
BFD_RELOC_NIOS2_GOT_HA,
BFD_RELOC_NIOS2_CALL_LO,
BFD_RELOC_NIOS2_CALL_HA,
BFD_RELOC_NIOS2_R2_S12,
BFD_RELOC_NIOS2_R2_I10_1_PCREL,
BFD_RELOC_NIOS2_R2_T1I7_1_PCREL,
BFD_RELOC_NIOS2_R2_T1I7_2,
BFD_RELOC_NIOS2_R2_T2I4,
BFD_RELOC_NIOS2_R2_T2I4_1,
BFD_RELOC_NIOS2_R2_T2I4_2,
BFD_RELOC_NIOS2_R2_X1I7_2,
BFD_RELOC_NIOS2_R2_X2L5,
BFD_RELOC_NIOS2_R2_F1I5_2,
BFD_RELOC_NIOS2_R2_L5I4X1,
BFD_RELOC_NIOS2_R2_T1X1I6,
BFD_RELOC_NIOS2_R2_T1X1I6_2,

/* PRU LDI 16-bit unsigned data-memory relocation. */
BFD_RELOC_PRU_U16,

Expand Down Expand Up @@ -8077,6 +8032,13 @@ bfd_keep_unused_section_symbols (const bfd *abfd)
return abfd->xvec->keep_unused_section_symbols;
}

static inline bool
bfd_target_supports_archives (const bfd *abfd)
{
return (abfd->xvec->_bfd_check_format[bfd_archive]
!= abfd->xvec->_bfd_check_format[bfd_unknown]);
}

bool bfd_set_default_target (const char *name);

const bfd_target *bfd_find_target (const char *target_name, bfd *abfd);
Expand Down
5 changes: 4 additions & 1 deletion usr/include/bfdlink.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* bfdlink.h -- header file for BFD link routines
Copyright (C) 1993-2024 Free Software Foundation, Inc.
Copyright (C) 1993-2025 Free Software Foundation, Inc.
Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support.
This file is part of BFD, the Binary File Descriptor library.
Expand Down Expand Up @@ -429,6 +429,9 @@ struct bfd_link_info
/* TRUE if only one read-only, non-code segment should be created. */
unsigned int one_rosegment: 1;

/* TRUE if GNU_PROPERTY_MEMORY_SEAL should be generated. */
unsigned int memory_seal: 1;

/* Nonzero if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
should be created. 1 for DWARF2 tables, 2 for compact tables. */
unsigned int eh_frame_hdr_type: 2;
Expand Down
2 changes: 1 addition & 1 deletion usr/include/ctf-api.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Public API to libctf.
Copyright (C) 2019-2024 Free Software Foundation, Inc.
Copyright (C) 2019-2025 Free Software Foundation, Inc.
This file is part of libctf.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/ctf.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* CTF format description.
Copyright (C) 2019-2024 Free Software Foundation, Inc.
Copyright (C) 2019-2025 Free Software Foundation, Inc.
This file is part of libctf.
Expand Down
11 changes: 1 addition & 10 deletions usr/include/diagnostics.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* Copyright (C) 2017-2024 Free Software Foundation, Inc.
/* Copyright (C) 2017-2025 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -76,11 +76,6 @@
# define DIAGNOSTIC_ERROR_SWITCH \
DIAGNOSTIC_ERROR ("-Wswitch")

# if __has_warning ("-Wenum-constexpr-conversion")
# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION \
DIAGNOSTIC_IGNORE ("-Wenum-constexpr-conversion")
# endif

#elif defined (__GNUC__) /* GCC */

# define DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS \
Expand Down Expand Up @@ -159,8 +154,4 @@
# define DIAGNOSTIC_ERROR_SWITCH
#endif

#ifndef DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION
# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION
#endif

#endif /* DIAGNOSTICS_H */
2 changes: 1 addition & 1 deletion usr/include/dis-asm.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Interface between the opcode library and its callers.
Copyright (C) 1999-2024 Free Software Foundation, Inc.
Copyright (C) 1999-2025 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/ansidecl.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Compiler compatibility macros
Copyright (C) 1991-2024 Free Software Foundation, Inc.
Copyright (C) 1991-2025 Free Software Foundation, Inc.
This file is part of the GNU C Library.
This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/demangle.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Defs for interface to demanglers.
Copyright (C) 1992-2024 Free Software Foundation, Inc.
Copyright (C) 1992-2025 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public License
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/dyn-string.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* An abstract string datatype.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Copyright (C) 1998-2025 Free Software Foundation, Inc.
Contributed by Mark Mitchell ([email protected]).
This file is part of GCC.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/fibheap.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* A Fibonacci heap datatype.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Copyright (C) 1998-2025 Free Software Foundation, Inc.
Contributed by Daniel Berlin ([email protected]).
This file is part of GCC.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/floatformat.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* IEEE floating point support declarations, for GDB, the GNU Debugger.
Copyright (C) 1991-2024 Free Software Foundation, Inc.
Copyright (C) 1991-2025 Free Software Foundation, Inc.
This file is part of GDB.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/hashtab.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* An expandable hash tables datatype.
Copyright (C) 1999-2024 Free Software Foundation, Inc.
Copyright (C) 1999-2025 Free Software Foundation, Inc.
Contributed by Vladimir Makarov ([email protected]).
This program is free software; you can redistribute it and/or modify
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/libiberty.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Function declarations for libiberty.
Copyright (C) 1997-2024 Free Software Foundation, Inc.
Copyright (C) 1997-2025 Free Software Foundation, Inc.
Note - certain prototypes declared in this header file are for
functions whoes implementation copyright does not belong to the
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/objalloc.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* objalloc.h -- routines to allocate memory for objects
Copyright (C) 1997-2024 Free Software Foundation, Inc.
Copyright (C) 1997-2025 Free Software Foundation, Inc.
Written by Ian Lance Taylor, Cygnus Solutions.
This program is free software; you can redistribute it and/or modify it
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/partition.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* List implementation of a partition of consecutive integers.
Copyright (C) 2000-2024 Free Software Foundation, Inc.
Copyright (C) 2000-2025 Free Software Foundation, Inc.
Contributed by CodeSourcery, LLC.
This file is part of GCC.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/safe-ctype.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* <ctype.h> replacement macros.
Copyright (C) 2000-2024 Free Software Foundation, Inc.
Copyright (C) 2000-2025 Free Software Foundation, Inc.
Contributed by Zack Weinberg <[email protected]>.
This file is part of the libiberty library.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/sort.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Sorting algorithms.
Copyright (C) 2000-2024 Free Software Foundation, Inc.
Copyright (C) 2000-2025 Free Software Foundation, Inc.
Contributed by Mark Mitchell <[email protected]>.
This file is part of GCC.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/splay-tree.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* A splay-tree datatype.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Copyright (C) 1998-2025 Free Software Foundation, Inc.
Contributed by Mark Mitchell ([email protected]).
This file is part of GCC.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/libiberty/timeval-utils.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* Basic struct timeval utilities.
Copyright (C) 2011-2024 Free Software Foundation, Inc.
Copyright (C) 2011-2025 Free Software Foundation, Inc.
This file is part of the libiberty library.
Libiberty is free software; you can redistribute it and/or
Expand Down
2 changes: 1 addition & 1 deletion usr/include/plugin-api.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* plugin-api.h -- External linker plugin API. */

/* Copyright (C) 2009-2024 Free Software Foundation, Inc.
/* Copyright (C) 2009-2025 Free Software Foundation, Inc.
Written by Cary Coutant <[email protected]>.
This file is part of binutils.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/sframe-api.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Public API to SFrame.
Copyright (C) 2022-2024 Free Software Foundation, Inc.
Copyright (C) 2022-2025 Free Software Foundation, Inc.
This file is part of libsframe.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/sframe.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SFrame format description.
Copyright (C) 2022-2024 Free Software Foundation, Inc.
Copyright (C) 2022-2025 Free Software Foundation, Inc.
This file is part of libsframe.
Expand Down
2 changes: 1 addition & 1 deletion usr/include/symcat.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/* Symbol concatenation utilities.
Copyright (C) 1998-2024 Free Software Foundation, Inc.
Copyright (C) 1998-2025 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
Binary file modified usr/lib/bfd-plugins/msys-dep.dll
Binary file not shown.
Binary file modified usr/lib/libbfd.a
Binary file not shown.
Binary file modified usr/lib/libctf-nobfd.a
Binary file not shown.
Binary file modified usr/lib/libctf.a
Binary file not shown.
Binary file modified usr/lib/libiberty.a
Binary file not shown.
Binary file modified usr/lib/libopcodes.a
Binary file not shown.
Binary file modified usr/lib/libsframe.a
Binary file not shown.
Binary file modified usr/share/info/as.info.gz
Binary file not shown.
Binary file modified usr/share/info/bfd.info.gz
Binary file not shown.
Binary file modified usr/share/info/binutils.info.gz
Binary file not shown.
Binary file modified usr/share/info/ctf-spec.info.gz
Binary file not shown.
Binary file modified usr/share/info/gprof.info.gz
Binary file not shown.
Binary file modified usr/share/info/ld.info.gz
Binary file not shown.
Binary file modified usr/share/info/ldint.info.gz
Binary file not shown.
Binary file modified usr/share/info/sframe-spec.info.gz
Binary file not shown.
Binary file modified usr/share/locale/bg/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/bg/LC_MESSAGES/ld.mo
Binary file not shown.
Binary file modified usr/share/locale/de/LC_MESSAGES/opcodes.mo
Binary file not shown.
Binary file modified usr/share/locale/fr/LC_MESSAGES/bfd.mo
Binary file not shown.
Binary file modified usr/share/locale/fr/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/fr/LC_MESSAGES/gas.mo
Binary file not shown.
Binary file modified usr/share/locale/fr/LC_MESSAGES/ld.mo
Binary file not shown.
Binary file modified usr/share/locale/fr/LC_MESSAGES/opcodes.mo
Binary file not shown.
Binary file added usr/share/locale/ms/LC_MESSAGES/bfd.mo
Binary file not shown.
Binary file modified usr/share/locale/pt_BR/LC_MESSAGES/gprof.mo
Binary file not shown.
Binary file modified usr/share/locale/ro/LC_MESSAGES/bfd.mo
Binary file not shown.
Binary file modified usr/share/locale/ro/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/ro/LC_MESSAGES/gas.mo
Binary file not shown.
Binary file modified usr/share/locale/ro/LC_MESSAGES/ld.mo
Binary file not shown.
Binary file modified usr/share/locale/ro/LC_MESSAGES/opcodes.mo
Binary file not shown.
Binary file modified usr/share/locale/sr/LC_MESSAGES/bfd.mo
Binary file not shown.
Binary file modified usr/share/locale/sr/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/sr/LC_MESSAGES/ld.mo
Binary file not shown.
Binary file modified usr/share/locale/sr/LC_MESSAGES/opcodes.mo
Binary file not shown.
Binary file modified usr/share/locale/sv/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/uk/LC_MESSAGES/bfd.mo
Binary file not shown.
Binary file modified usr/share/locale/uk/LC_MESSAGES/binutils.mo
Binary file not shown.
Binary file modified usr/share/locale/uk/LC_MESSAGES/gas.mo
Binary file not shown.
Binary file modified usr/share/locale/uk/LC_MESSAGES/ld.mo
Binary file not shown.
Binary file modified usr/share/locale/uk/LC_MESSAGES/opcodes.mo
Binary file not shown.
Binary file modified usr/share/man/man1/addr2line.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/ar.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/as.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/c++filt.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/dlltool.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/elfedit.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/gprof.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/ld.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/nm.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/objcopy.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/objdump.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/ranlib.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/readelf.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/size.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/strings.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/strip.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/windmc.1.gz
Binary file not shown.
Binary file modified usr/share/man/man1/windres.1.gz
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/ar.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/as.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/dlltool.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/ld.bfd.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/ld.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/nm.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/objcopy.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/objdump.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/ranlib.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/readelf.exe
Binary file not shown.
Binary file modified usr/x86_64-pc-msys/bin/strip.exe
Binary file not shown.
Loading

0 comments on commit afbf678

Please sign in to comment.