ChangeLog 3.8 KB

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