Skip to content

Commit afbf678

Browse files
author
Git for Windows Build Agent
committed
Update 1 package
binutils (2.43.1-1 -> 2.44-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 9214ac7 commit afbf678

File tree

146 files changed

+795
-811
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

146 files changed

+795
-811
lines changed

usr/bin/addr2line.exe

1.5 KB
Binary file not shown.

usr/bin/ar.exe

2 KB
Binary file not shown.

usr/bin/as.exe

19 KB
Binary file not shown.

usr/bin/c++filt.exe

1.5 KB
Binary file not shown.

usr/bin/dlltool.exe

1 KB
Binary file not shown.

usr/bin/dllwrap.exe

0 Bytes
Binary file not shown.

usr/bin/elfedit.exe

31 Bytes
Binary file not shown.

usr/bin/gprof.exe

3.53 KB
Binary file not shown.

usr/bin/ld.bfd.exe

12.6 KB
Binary file not shown.

usr/bin/ld.exe

12.6 KB
Binary file not shown.

usr/bin/nm.exe

3 KB
Binary file not shown.

usr/bin/objcopy.exe

1.5 KB
Binary file not shown.

usr/bin/objdump.exe

41 KB
Binary file not shown.

usr/bin/ranlib.exe

2 KB
Binary file not shown.

usr/bin/readelf.exe

3.53 KB
Binary file not shown.

usr/bin/size.exe

1 KB
Binary file not shown.

usr/bin/strings.exe

2 KB
Binary file not shown.

usr/bin/strip.exe

1.5 KB
Binary file not shown.

usr/bin/windmc.exe

2.5 KB
Binary file not shown.

usr/bin/windres.exe

2 KB
Binary file not shown.

usr/include/ansidecl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Compiler compatibility macros
2-
Copyright (C) 1991-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1991-2025 Free Software Foundation, Inc.
33
This file is part of the GNU C Library.
44
55
This program is free software; you can redistribute it and/or modify

usr/include/bfd.h

Lines changed: 29 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

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

812812
/* A symbol which points at this section only. */
813813
struct bfd_symbol *symbol;
814-
struct bfd_symbol **symbol_ptr_ptr;
815814

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

928+
/* GNU object-only section name. */
929+
#define GNU_OBJECT_ONLY_SECTION_NAME ".gnu_object_only"
930+
929931
/* Pointer to the common section. */
930932
#define bfd_com_section_ptr (&_bfd_std_section[0])
931933
/* Pointer to the undefined section. */
@@ -1002,8 +1004,8 @@ discarded_section (const asection *sec)
10021004
/* target_index, used_by_bfd, constructor_chain, owner, */ \
10031005
0, NULL, NULL, NULL, \
10041006
\
1005-
/* symbol, symbol_ptr_ptr, */ \
1006-
(struct bfd_symbol *) SYM, &SEC.symbol, \
1007+
/* symbol, */ \
1008+
(struct bfd_symbol *) SYM, \
10071009
\
10081010
/* map_head, map_tail, already_assigned, type */ \
10091011
{ NULL }, { NULL }, NULL, 0 \
@@ -1260,6 +1262,11 @@ typedef struct _symbol_info
12601262
const char *stab_name; /* String for stab type. */
12611263
} symbol_info;
12621264

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

@@ -1797,10 +1804,6 @@ enum bfd_architecture
17971804
#define bfd_mach_aarch64_8R 1
17981805
#define bfd_mach_aarch64_ilp32 32
17991806
#define bfd_mach_aarch64_llp64 64
1800-
bfd_arch_nios2, /* Nios II. */
1801-
#define bfd_mach_nios2 0
1802-
#define bfd_mach_nios2r1 1
1803-
#define bfd_mach_nios2r2 2
18041807
bfd_arch_visium, /* Visium. */
18051808
#define bfd_mach_visium 1
18061809
bfd_arch_wasm32, /* WebAssembly. */
@@ -1962,7 +1965,8 @@ enum bfd_lto_object_type
19621965
lto_non_object, /* Not an LTO object. */
19631966
lto_non_ir_object, /* An object without LTO IR. */
19641967
lto_slim_ir_object, /* A slim LTO IR object. */
1965-
lto_fat_ir_object /* A fat LTO IR object. */
1968+
lto_fat_ir_object, /* A fat LTO IR object. */
1969+
lto_mixed_object /* A mixed LTO IR object. */
19661970
};
19671971

19681972
struct bfd_mmapped_entry
@@ -2185,7 +2189,7 @@ struct bfd
21852189
unsigned int read_only : 1;
21862190

21872191
/* LTO object type. */
2188-
ENUM_BITFIELD (bfd_lto_object_type) lto_type : 2;
2192+
ENUM_BITFIELD (bfd_lto_object_type) lto_type : 3;
21892193

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

2224+
/* The object-only section on the section list. */
2225+
struct bfd_section *object_only_section;
2226+
22202227
/* The number of sections. */
22212228
unsigned int section_count;
22222229

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

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

2800+
asymbol *bfd_group_signature (asection *group, asymbol **isympp);
2801+
27932802
/* Extracted from bfdio.c. */
27942803
bfd_size_type bfd_read (void *, bfd_size_type, bfd *)
27952804
ATTRIBUTE_WARN_UNUSED_RESULT;
@@ -3006,9 +3015,6 @@ bool bfd_merge_private_bfd_data
30063015
(ibfd, info))
30073016

30083017
/* Extracted from opncls.c. */
3009-
/* Set to N to open the next N BFDs using an alternate id space. */
3010-
extern unsigned int bfd_use_reserved_id;
3011-
30123018
bfd *bfd_fopen (const char *filename, const char *target,
30133019
const char *mode, int fd);
30143020

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

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

3085+
const char *bfd_extract_object_only_section
3086+
(bfd *abfd);
3087+
30793088
/* Extracted from reloc.c. */
30803089
typedef enum bfd_reloc_status
30813090
{
@@ -6159,60 +6168,6 @@ enum bfd_reloc_code_real
61596168
BFD_RELOC_MSP430_SET_ULEB128,
61606169
BFD_RELOC_MSP430_SUB_ULEB128,
61616170

6162-
/* Relocations used by the Altera Nios II core. */
6163-
BFD_RELOC_NIOS2_S16,
6164-
BFD_RELOC_NIOS2_U16,
6165-
BFD_RELOC_NIOS2_CALL26,
6166-
BFD_RELOC_NIOS2_IMM5,
6167-
BFD_RELOC_NIOS2_CACHE_OPX,
6168-
BFD_RELOC_NIOS2_IMM6,
6169-
BFD_RELOC_NIOS2_IMM8,
6170-
BFD_RELOC_NIOS2_HI16,
6171-
BFD_RELOC_NIOS2_LO16,
6172-
BFD_RELOC_NIOS2_HIADJ16,
6173-
BFD_RELOC_NIOS2_GPREL,
6174-
BFD_RELOC_NIOS2_UJMP,
6175-
BFD_RELOC_NIOS2_CJMP,
6176-
BFD_RELOC_NIOS2_CALLR,
6177-
BFD_RELOC_NIOS2_ALIGN,
6178-
BFD_RELOC_NIOS2_GOT16,
6179-
BFD_RELOC_NIOS2_CALL16,
6180-
BFD_RELOC_NIOS2_GOTOFF_LO,
6181-
BFD_RELOC_NIOS2_GOTOFF_HA,
6182-
BFD_RELOC_NIOS2_PCREL_LO,
6183-
BFD_RELOC_NIOS2_PCREL_HA,
6184-
BFD_RELOC_NIOS2_TLS_GD16,
6185-
BFD_RELOC_NIOS2_TLS_LDM16,
6186-
BFD_RELOC_NIOS2_TLS_LDO16,
6187-
BFD_RELOC_NIOS2_TLS_IE16,
6188-
BFD_RELOC_NIOS2_TLS_LE16,
6189-
BFD_RELOC_NIOS2_TLS_DTPMOD,
6190-
BFD_RELOC_NIOS2_TLS_DTPREL,
6191-
BFD_RELOC_NIOS2_TLS_TPREL,
6192-
BFD_RELOC_NIOS2_COPY,
6193-
BFD_RELOC_NIOS2_GLOB_DAT,
6194-
BFD_RELOC_NIOS2_JUMP_SLOT,
6195-
BFD_RELOC_NIOS2_RELATIVE,
6196-
BFD_RELOC_NIOS2_GOTOFF,
6197-
BFD_RELOC_NIOS2_CALL26_NOAT,
6198-
BFD_RELOC_NIOS2_GOT_LO,
6199-
BFD_RELOC_NIOS2_GOT_HA,
6200-
BFD_RELOC_NIOS2_CALL_LO,
6201-
BFD_RELOC_NIOS2_CALL_HA,
6202-
BFD_RELOC_NIOS2_R2_S12,
6203-
BFD_RELOC_NIOS2_R2_I10_1_PCREL,
6204-
BFD_RELOC_NIOS2_R2_T1I7_1_PCREL,
6205-
BFD_RELOC_NIOS2_R2_T1I7_2,
6206-
BFD_RELOC_NIOS2_R2_T2I4,
6207-
BFD_RELOC_NIOS2_R2_T2I4_1,
6208-
BFD_RELOC_NIOS2_R2_T2I4_2,
6209-
BFD_RELOC_NIOS2_R2_X1I7_2,
6210-
BFD_RELOC_NIOS2_R2_X2L5,
6211-
BFD_RELOC_NIOS2_R2_F1I5_2,
6212-
BFD_RELOC_NIOS2_R2_L5I4X1,
6213-
BFD_RELOC_NIOS2_R2_T1X1I6,
6214-
BFD_RELOC_NIOS2_R2_T1X1I6_2,
6215-
62166171
/* PRU LDI 16-bit unsigned data-memory relocation. */
62176172
BFD_RELOC_PRU_U16,
62186173

@@ -8077,6 +8032,13 @@ bfd_keep_unused_section_symbols (const bfd *abfd)
80778032
return abfd->xvec->keep_unused_section_symbols;
80788033
}
80798034

8035+
static inline bool
8036+
bfd_target_supports_archives (const bfd *abfd)
8037+
{
8038+
return (abfd->xvec->_bfd_check_format[bfd_archive]
8039+
!= abfd->xvec->_bfd_check_format[bfd_unknown]);
8040+
}
8041+
80808042
bool bfd_set_default_target (const char *name);
80818043

80828044
const bfd_target *bfd_find_target (const char *target_name, bfd *abfd);

usr/include/bfdlink.h

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* bfdlink.h -- header file for BFD link routines
2-
Copyright (C) 1993-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1993-2025 Free Software Foundation, Inc.
33
Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support.
44
55
This file is part of BFD, the Binary File Descriptor library.
@@ -429,6 +429,9 @@ struct bfd_link_info
429429
/* TRUE if only one read-only, non-code segment should be created. */
430430
unsigned int one_rosegment: 1;
431431

432+
/* TRUE if GNU_PROPERTY_MEMORY_SEAL should be generated. */
433+
unsigned int memory_seal: 1;
434+
432435
/* Nonzero if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
433436
should be created. 1 for DWARF2 tables, 2 for compact tables. */
434437
unsigned int eh_frame_hdr_type: 2;

usr/include/ctf-api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Public API to libctf.
2-
Copyright (C) 2019-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2019-2025 Free Software Foundation, Inc.
33
44
This file is part of libctf.
55

usr/include/ctf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* CTF format description.
2-
Copyright (C) 2019-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2019-2025 Free Software Foundation, Inc.
33
44
This file is part of libctf.
55

usr/include/diagnostics.h

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (C) 2017-2024 Free Software Foundation, Inc.
1+
/* Copyright (C) 2017-2025 Free Software Foundation, Inc.
22
33
This program is free software; you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by
@@ -76,11 +76,6 @@
7676
# define DIAGNOSTIC_ERROR_SWITCH \
7777
DIAGNOSTIC_ERROR ("-Wswitch")
7878

79-
# if __has_warning ("-Wenum-constexpr-conversion")
80-
# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION \
81-
DIAGNOSTIC_IGNORE ("-Wenum-constexpr-conversion")
82-
# endif
83-
8479
#elif defined (__GNUC__) /* GCC */
8580

8681
# define DIAGNOSTIC_IGNORE_DEPRECATED_DECLARATIONS \
@@ -159,8 +154,4 @@
159154
# define DIAGNOSTIC_ERROR_SWITCH
160155
#endif
161156

162-
#ifndef DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION
163-
# define DIAGNOSTIC_IGNORE_ENUM_CONSTEXPR_CONVERSION
164-
#endif
165-
166157
#endif /* DIAGNOSTICS_H */

usr/include/dis-asm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Interface between the opcode library and its callers.
22
3-
Copyright (C) 1999-2024 Free Software Foundation, Inc.
3+
Copyright (C) 1999-2025 Free Software Foundation, Inc.
44
55
This program is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by

usr/include/libiberty/ansidecl.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Compiler compatibility macros
2-
Copyright (C) 1991-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1991-2025 Free Software Foundation, Inc.
33
This file is part of the GNU C Library.
44
55
This program is free software; you can redistribute it and/or modify

usr/include/libiberty/demangle.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Defs for interface to demanglers.
2-
Copyright (C) 1992-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1992-2025 Free Software Foundation, Inc.
33
44
This program is free software; you can redistribute it and/or
55
modify it under the terms of the GNU Library General Public License

usr/include/libiberty/dyn-string.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* An abstract string datatype.
2-
Copyright (C) 1998-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1998-2025 Free Software Foundation, Inc.
33
Contributed by Mark Mitchell ([email protected]).
44
55
This file is part of GCC.

usr/include/libiberty/fibheap.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* A Fibonacci heap datatype.
2-
Copyright (C) 1998-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1998-2025 Free Software Foundation, Inc.
33
Contributed by Daniel Berlin ([email protected]).
44
55
This file is part of GCC.

usr/include/libiberty/floatformat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* IEEE floating point support declarations, for GDB, the GNU Debugger.
2-
Copyright (C) 1991-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1991-2025 Free Software Foundation, Inc.
33
44
This file is part of GDB.
55

usr/include/libiberty/hashtab.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* An expandable hash tables datatype.
2-
Copyright (C) 1999-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1999-2025 Free Software Foundation, Inc.
33
Contributed by Vladimir Makarov ([email protected]).
44
55
This program is free software; you can redistribute it and/or modify

usr/include/libiberty/libiberty.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Function declarations for libiberty.
22
3-
Copyright (C) 1997-2024 Free Software Foundation, Inc.
3+
Copyright (C) 1997-2025 Free Software Foundation, Inc.
44
55
Note - certain prototypes declared in this header file are for
66
functions whoes implementation copyright does not belong to the

usr/include/libiberty/objalloc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* objalloc.h -- routines to allocate memory for objects
2-
Copyright (C) 1997-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1997-2025 Free Software Foundation, Inc.
33
Written by Ian Lance Taylor, Cygnus Solutions.
44
55
This program is free software; you can redistribute it and/or modify it

usr/include/libiberty/partition.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* List implementation of a partition of consecutive integers.
2-
Copyright (C) 2000-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2000-2025 Free Software Foundation, Inc.
33
Contributed by CodeSourcery, LLC.
44
55
This file is part of GCC.

usr/include/libiberty/safe-ctype.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* <ctype.h> replacement macros.
22
3-
Copyright (C) 2000-2024 Free Software Foundation, Inc.
3+
Copyright (C) 2000-2025 Free Software Foundation, Inc.
44
Contributed by Zack Weinberg <[email protected]>.
55
66
This file is part of the libiberty library.

usr/include/libiberty/sort.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Sorting algorithms.
2-
Copyright (C) 2000-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2000-2025 Free Software Foundation, Inc.
33
Contributed by Mark Mitchell <[email protected]>.
44
55
This file is part of GCC.

usr/include/libiberty/splay-tree.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* A splay-tree datatype.
2-
Copyright (C) 1998-2024 Free Software Foundation, Inc.
2+
Copyright (C) 1998-2025 Free Software Foundation, Inc.
33
Contributed by Mark Mitchell ([email protected]).
44
55
This file is part of GCC.

usr/include/libiberty/timeval-utils.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* Basic struct timeval utilities.
2-
Copyright (C) 2011-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2011-2025 Free Software Foundation, Inc.
33
44
This file is part of the libiberty library.
55
Libiberty is free software; you can redistribute it and/or

usr/include/plugin-api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* plugin-api.h -- External linker plugin API. */
22

3-
/* Copyright (C) 2009-2024 Free Software Foundation, Inc.
3+
/* Copyright (C) 2009-2025 Free Software Foundation, Inc.
44
Written by Cary Coutant <[email protected]>.
55
66
This file is part of binutils.

usr/include/sframe-api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Public API to SFrame.
22
3-
Copyright (C) 2022-2024 Free Software Foundation, Inc.
3+
Copyright (C) 2022-2025 Free Software Foundation, Inc.
44
55
This file is part of libsframe.
66

usr/include/sframe.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/* SFrame format description.
2-
Copyright (C) 2022-2024 Free Software Foundation, Inc.
2+
Copyright (C) 2022-2025 Free Software Foundation, Inc.
33
44
This file is part of libsframe.
55

usr/include/symcat.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* Symbol concatenation utilities.
22
3-
Copyright (C) 1998-2024 Free Software Foundation, Inc.
3+
Copyright (C) 1998-2025 Free Software Foundation, Inc.
44
55
This program is free software; you can redistribute it and/or modify
66
it under the terms of the GNU General Public License as published by

usr/lib/bfd-plugins/msys-dep.dll

0 Bytes
Binary file not shown.

usr/lib/libbfd.a

2.76 KB
Binary file not shown.

usr/lib/libctf-nobfd.a

-32 Bytes
Binary file not shown.

usr/lib/libctf.a

-48 Bytes
Binary file not shown.

usr/lib/libiberty.a

986 Bytes
Binary file not shown.

usr/lib/libopcodes.a

40.6 KB
Binary file not shown.

usr/lib/libsframe.a

0 Bytes
Binary file not shown.

usr/share/info/as.info.gz

-1.23 KB
Binary file not shown.

usr/share/info/bfd.info.gz

-438 Bytes
Binary file not shown.

usr/share/info/binutils.info.gz

-111 Bytes
Binary file not shown.

usr/share/info/ctf-spec.info.gz

44 Bytes
Binary file not shown.

usr/share/info/gprof.info.gz

-43 Bytes
Binary file not shown.

usr/share/info/ld.info.gz

711 Bytes
Binary file not shown.

usr/share/info/ldint.info.gz

-47 Bytes
Binary file not shown.

usr/share/info/sframe-spec.info.gz

-17 Bytes
Binary file not shown.
2.15 KB
Binary file not shown.

usr/share/locale/bg/LC_MESSAGES/ld.mo

2.85 KB
Binary file not shown.
-174 Bytes
Binary file not shown.
5.12 KB
Binary file not shown.
32 Bytes
Binary file not shown.
-933 Bytes
Binary file not shown.

usr/share/locale/fr/LC_MESSAGES/ld.mo

11 KB
Binary file not shown.
141 Bytes
Binary file not shown.
1.82 KB
Binary file not shown.
12 Bytes
Binary file not shown.
5.06 KB
Binary file not shown.
45 Bytes
Binary file not shown.
336 KB
Binary file not shown.

usr/share/locale/ro/LC_MESSAGES/ld.mo

8.77 KB
Binary file not shown.
-206 Bytes
Binary file not shown.
1.73 KB
Binary file not shown.
34.6 KB
Binary file not shown.

usr/share/locale/sr/LC_MESSAGES/ld.mo

36.4 KB
Binary file not shown.
64 Bytes
Binary file not shown.
-64 Bytes
Binary file not shown.
6.41 KB
Binary file not shown.
-46 Bytes
Binary file not shown.
-1.83 KB
Binary file not shown.

usr/share/locale/uk/LC_MESSAGES/ld.mo

10.5 KB
Binary file not shown.
-264 Bytes
Binary file not shown.

usr/share/man/man1/addr2line.1.gz

-3 Bytes
Binary file not shown.

usr/share/man/man1/ar.1.gz

-1 Bytes
Binary file not shown.

usr/share/man/man1/as.1.gz

96 Bytes
Binary file not shown.

usr/share/man/man1/c++filt.1.gz

-3 Bytes
Binary file not shown.

usr/share/man/man1/dlltool.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/elfedit.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/gprof.1.gz

37 Bytes
Binary file not shown.

usr/share/man/man1/ld.1.gz

724 Bytes
Binary file not shown.

usr/share/man/man1/nm.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/objcopy.1.gz

-1 Bytes
Binary file not shown.

usr/share/man/man1/objdump.1.gz

0 Bytes
Binary file not shown.

usr/share/man/man1/ranlib.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/readelf.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/size.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/strings.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/strip.1.gz

-3 Bytes
Binary file not shown.

usr/share/man/man1/windmc.1.gz

-2 Bytes
Binary file not shown.

usr/share/man/man1/windres.1.gz

-2 Bytes
Binary file not shown.

usr/x86_64-pc-msys/bin/ar.exe

2 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/as.exe

19 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/dlltool.exe

1 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/ld.bfd.exe

12.6 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/ld.exe

12.6 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/nm.exe

3 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/objcopy.exe

1.5 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/objdump.exe

41 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/ranlib.exe

2 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/readelf.exe

3.53 KB
Binary file not shown.

usr/x86_64-pc-msys/bin/strip.exe

1.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)