]> Git Repo - binutils.git/blob - binutils/ChangeLog
binutils: drop redundant 'program_name' definition (-fno-common)
[binutils.git] / binutils / ChangeLog
1 2020-02-03  Sergei Trofimovich  <[email protected]>
2
3         * coffdump.c (program_name): Drop redundant definition.
4         * srconv.c (program_name): Likewise
5         * sysdump.c (program_name): Likewise
6
7 2020-02-02  H.J. Lu  <[email protected]>
8
9         PR gas/25380
10         * objdump.c (sym_ok): Return FALSE if 2 sections are in the
11         same file with different section pointers.
12
13 2020-02-01  Nick Clifton  <[email protected]>
14
15         * README-how-to-make-a-release: Update with more details on the
16         release making process.
17
18 2020-01-31  Nick Clifton  <[email protected]>
19
20         * po/sv.po: Updated Swedish translation.
21
22 2020-01-28  Nick Clifton  <[email protected]>
23
24         * readelf.c (get_build_id): Simplify warning message about corrupt
25         notes encountered whilst scanning for the build-id.
26
27 2020-01-27  Roland McGrath  <[email protected]>
28
29         * objcopy.c (compare_gnu_build_notes): Fix comparison results
30         for overlapping ranges so that (A == B) == (B == A) holds.
31
32 2020-01-27  Alan Modra  <[email protected]>
33
34         * testsuite/lib/binutils-common.exp (big_or_little_endian): Replace
35         case statement with switch statement.
36
37 2020-01-24  Nick Clifton  <[email protected]>
38
39         * readelf.c (get_build_id): Fix warning messages about corrupt
40         notes.
41
42 2020-01-23  Nick Clifton  <[email protected]>
43
44         * po/fr.po: Updated French translation.
45
46 2020-01-22  Yuri Chornoivan  <[email protected]>
47
48         PR 25417
49         * readelf.c (get_alpha_symbol_other): Fix error message typo.
50
51 2020-01-20  Nick Clifton  <[email protected]>
52
53         * po/pt.po: Updated Portuguese translation.
54         * po/uk.po: Updated Ukranian translation.
55
56 2020-01-18  Nick Clifton  <[email protected]>
57
58         * README-how-to-make-a-release: Update notes on how to cut a
59         branch for a release.
60
61 2020-01-18  Nick Clifton  <[email protected]>
62
63         * configure: Regenerate.
64         * po/binutils.pot: Regenerate.
65
66 2020-01-18  Nick Clifton  <[email protected]>
67
68         Binutils 2.34 branch created.
69
70 2020-01-17  Thomas Troeger  <[email protected]>
71
72         * objdump.c (jump_info_visualize_address): Discard jumps that are
73         no longer needed.
74         (disassemble_bytes): Only compute the maximum level if jumps were
75         detected.
76
77 2020-01-13  Nick Clifton  <[email protected]>
78
79         * objdump.c (disassemble_bytes): Remove C99-ism.
80         * testsuite/binutils-all/debuginfod.exp: New tests.
81
82 2020-01-13  Thomas Troeger  <[email protected]>
83
84         * objdump.c (visualize_jumps, color_output, extended_color_output)
85         (detected_jumps): New variables.
86         (usage): Add the new jump visualization options.
87         (option_values): Add new option value.
88         (long_options): Add the new option.
89         (jump_info_new, jump_info_free): New functions.
90         (jump_info_min_address, jump_info_max_address): Likewise.
91         (jump_info_end_address, jump_info_is_start_address): Likewise.
92         (jump_info_is_end_address, jump_info_size): Likewise.
93         (jump_info_unlink, jump_info_insert): Likewise.
94         (jump_info_add_front, jump_info_move_linked): Likewise.
95         (jump_info_intersect, jump_info_merge): Likewise.
96         (jump_info_sort, jump_info_visualize_address): Likewise.
97         (disassemble_jumps): New function - used to locate jumps.
98         (disassemble_bytes): Add ascii art generation.
99         (disassemble_section): Add scan to locate jumps.
100         (main): Parse the new visualization option.
101         * doc/binutils.texi: Document the new feature.
102         * NEWS: Mention the new feature.
103
104 2020-01-13  Alan Modra  <[email protected]>
105
106         PR 25360
107         PR 25361
108         * dwarf.c (display_debug_frames): Move fde_fc earlier.  Free
109         fde_fc col_type and col_offset.
110         * readelf.c (apply_relocations): Move symsec check earlier.
111         (free_debug_section): Free reloc_info.
112         (process_notes_at): Free pnotes on error path.
113         (process_object): Free dump_sects here..
114         (process_archive): ..not here.
115
116 2020-01-13  Alan Modra  <[email protected]>
117
118         PR 25362
119         * nm.c (display_rel_file): Free dyn_syms.
120
121 2020-01-09  Nick Clifton  <[email protected]>
122
123         PR 25220
124         * objcopy.c (empty_name): New variable.
125         (need_sym_before): Prevent an attempt to free a static variable.
126         (filter_symbols): Avoid strcmp test by checking for pointer
127         equality.
128
129 2020-01-09  Nick Clifton  <[email protected]>
130
131         * po/zh_TW.po: Updated Traditional Chinese translation.
132
133 2020-01-09  Aaron Merey  <[email protected]>
134
135         * Makefile.am (readelf_LDADD, objdump_LDADD): Add libdebuginfod.
136         * Makefile.in: Regenerate.
137         * NEWS: Update.
138         * config.in: Regenerate.
139         * configure: Regenerate.
140         * configure.ac: Call AC_DEBUGINFOD.
141         * doc/Makefile.in: Regenerate.
142         * doc/binutils.texi: Add section on using binutils
143         with debuginfod.
144         * dwarf.c (debuginfod_fetch_separate_debug_info): New function.
145         Query debuginfod servers for the target debug file.
146         (load_separate_debug_info): Call
147         debuginfod_fetch_separate_debug_info if configured with
148         debuginfod.
149         (load_separate_debug_files): Add file argument to
150         load_separate_debug_info calls.
151         * dwarf.h (get_build_id): Add declaration.
152         * objdump.c (get_build_id): New function. Get build-id of file.
153         * readelf.c (get_build_id): Likewise.
154         * testsuite/binutils-all/debuginfod.exp: New tests.
155         * testsuite/binutils-all/linkdebug.s: Add .note.gnu.build-id
156         section.
157
158 2020-01-02  Sergey Belyashov  <[email protected]>
159
160         * readelf.c: Add support for new Z*) relocations and machine
161         types.
162
163 2020-01-01  Alan Modra  <[email protected]>
164
165         Update year range in copyright notice of all files.
166
167 For older changes see ChangeLog-2019
168 \f
169 Copyright (C) 2020 Free Software Foundation, Inc.
170
171 Copying and distribution of this file, with or without modification,
172 are permitted in any medium without royalty provided the copyright
173 notice and this notice are preserved.
174
175 Local Variables:
176 mode: change-log
177 left-margin: 8
178 fill-column: 74
179 version-control: never
180 End:
This page took 0.034228 seconds and 4 git commands to generate.