blob: 1255136b2be1fd081e0936414f22486b146b9f28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
2021-10-26 Jonathan Wakely <jwakely@redhat.com>
* resolver.cc (module_resolver::read_tuple_file): Use unique_ptr
to ensure memory is freed before returning.
2021-10-22 Eric Gallager <egallager@gcc.gnu.org>
PR other/102663
* Makefile.in: Add dummy install-dvi target.
2021-09-14 Iain Sandoe <iain@sandoe.co.uk>
* resolver.cc (module_resolver::ModuleCompiledRequest):
Add a simple handler.
* resolver.h: Declare handler for ModuleCompiledRequest.
2021-07-21 Iain Sandoe <iain@sandoe.co.uk>
Jakub Jelinek <jakub@redhat.com>
PR c++/98821
* config.h.in: Regenerate.
* configure: Regenerate.
* configure.ac: Configure using C++. Pull logic to
detect enabled checking modes; default to release
checking.
* server.cc (AI_NUMERICSERV): Define a fallback value.
(gcc_assert): New.
(gcc_unreachable): New.
(fancy_abort): Only build when checking is enabled.
2021-05-25 Jakub Jelinek <jakub@redhat.com>
PR bootstrap/100731
* server.cc: Include <cstdlib>.
2021-05-25 Eric Botcazou <ebotcazou@adacore.com>
* configure.ac (--enable-maintainer-mode): Fix typo and weird syntax.
* configure: Regenerate.
2021-05-25 Jakub Jelinek <jakub@redhat.com>
* Makefile.in: Update copyright year.
* configure.ac: Likewise.
* resolver.cc: Likewise.
* resolver.h: Likewise.
* server.cc: Likewise.
(print_version): Update copyright notice date.
2021-05-10 Martin Liska <mliska@suse.cz>
* Makefile.in: Include also ../gcc folder.
2021-04-01 Iain Sandoe <iain@sandoe.co.uk>
* resolver.h: Do not include std headers directly when
building in GCC.
2021-02-25 Nathan Sidwell <nathan@acm.org>
* server.cc: Use #if NETWORKING not #ifdef, to be consistent
with elsewhere.
2021-01-05 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
PR c++/98316
* configure.ac: Include ../config/ax_lib_socket_nsl.m4.
(NETLIBS): Determine using AX_LIB_SOCKET_NSL.
* configure: Regenerate.
* Makefile.in (NETLIBS): Define.
(g++-mapper-server$(exeext)): Add $(NETLIBS).
2021-01-04 Nathan Sidwell <nathan@acm.org>
* resolver.cc (module_resolver::cmi_response): Remove
std::move of temporary.
2020-12-23 Nathan Sidwell <nathan@acm.org>
PR bootstrap/98324
* Makefile.in: Add FLAGPIE.
* configure.ac: Add --enable-default-pie support.
* configure: Rebuilt.
2020-12-21 Nathan Sidwell <nathan@acm.org>
PR other/98409
* Makefile.in: Fix exeext variable case.
2020-12-17 Nathan Sidwell <nathan@acm.org>
* server.cc (crash_signal): Don't use strsignal.
2020-12-17 Nathan Sidwell <nathan@acm.org>
PR bootstrap/98300
* configure.ac: Check for sys/mman.h.
* resolver.cc: Don't assume mmap, O_CLOEXEC are available. Use
xmalloc.
* config.h.in: Regenerated.
* configure: Regenerated.
2020-12-17 Jakub Jelinek <jakub@redhat.com>
* configure.ac: Add GCC_BASE_VER.
* Makefile.in (version): Remove variable.
(gcc_version): New variable.
(libexecsubdir): Use $(gcc_version) instead of $(version).
* configure: Regenerated.
2020-12-16 Nathan Sidwell <nathan@acm.org>
* Makefile.in (INSTALL): Replace with ...
(INSTALL_PROGRAM): ... this.
(INSTALL_STRIP_PROGRAM): New.
(install-strip): New target.
(install): Use INSTALL_PROGRAM.
* configure.ac: Add INSTALL_PROGRAM.
* configure: Regenerated.
2020-12-16 Nathan Sidwell <nathan@acm.org>
* Makefile.in (install): Do not use -p, use mkinstalldirs.
(clean): Fix typo.
2020-12-15 Nathan Sidwell <nathan@acm.org>
* Makefile.in: New.
* config.h.in: New.
* configure: New.
* configure.ac: New.
* resolver.cc: New.
* resolver.h: New.
* server.cc: New.
Copyright (C) 2020-2022 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
notice and this notice are preserved.
|