Skip to content
Snippets Groups Projects
  1. Apr 07, 2021
  2. Apr 06, 2021
  3. Jan 13, 2021
  4. Jan 12, 2021
    • Nathan Sidwell's avatar
      libcody: Simplify configure [PR 98414, 98509] · e2aa8a5f
      Nathan Sidwell authored
      Libcody's configurey was overly 'clever'.  That didn't play well with
      GCC's structure.  This removes lots of that overengineering, using
      libcpp as an example.
      
      	libcody/
      	* Makefile.in: Remove auto parallelize, swallow Makesub.in. Don't
      	check compiler name here.
      	* Makesub.in: Delete.
      	* build-aux/config.guess: Delete.
      	* build-aux/config.sub: Delete.
      	* build-aux/install-sh: Delete.
      	* dox.cfg.in: Delete.
      	* gdbinit.in: Delete.
      	* internal.hh (BuildNote): Delete.
      	* fatal.cc (BuildNote): Delete.
      	* config.m4: Remove unneeded fns.
      	* configure.ac: Remove unneccessary checks and configures.
      	* configure: Rebuilt.
      	* config.h.in: Rebuilt.
      e2aa8a5f
  5. Jan 07, 2021
  6. Jan 06, 2021
  7. Jan 05, 2021
  8. Jan 04, 2021
  9. Dec 24, 2020
  10. Dec 23, 2020
    • Nathan Sidwell's avatar
      libcody: Remove testsuite [PR 98318] · 16929214
      Nathan Sidwell authored
      libcody's testsuite is not very portable, and is testing a host
      library, so will do weird things on cross compiling, I think.  Let's
      just drop it.
      
      	libcody/
      	* Makefile.in (LDFLAGS): Drop -L..
      	* tests/01-serialize/connect.cc: Delete.
      	* tests/01-serialize/decoder.cc: Delete.
      	* tests/01-serialize/encoder.cc: Delete.
      	* tests/02-comms/client-1.cc: Delete.
      	* tests/02-comms/pivot-1.cc: Delete.
      	* tests/02-comms/server-1.cc: Delete.
      	* tests/Makesub.in: Delete.
      	* tests/jouster: Delete.
      16929214
  11. Dec 22, 2020
  12. Dec 21, 2020
    • Nathan Sidwell's avatar
      bootstrap: std:stoul non-portable [PR 98412] · 1467a5c5
      Nathan Sidwell authored
      Fix some more system-specific issues.  Not everyone's C++11 is the same :(
      
      	PR bootstrap/98412
      	libcody/
      	* client.cc: Include cstdlib.
      	* server.cc: Include cstdlib.
      	gcc/cp/
      	* mapper-client.cc: INCLUDE_STRING, INCLUDE_VECTOR.
      	(module_client::open_module_client): Avoid std::stoul.
      	* mapper-resolver.cc: INCLUDE_STRING, INCLUDE_VECTOR.
      1467a5c5
    • Gerald Pfeifer's avatar
      libcody: Include <netinet/in.h> as needed · cf22f78f
      Gerald Pfeifer authored
      libcody as originally added to GCC fail to build on *-unknown-freebsd11.4
      and presumably others:
      
        c++ -std=c++11 -g -include config.h -I ... -MMD -MP -MF netclient.d -c
          -o netclient.o
        .../libcody/netclient.cc:114:3: error: unknown type sockaddr_in6 addr;
                                                            ^~~~~~~~~~~~
      
      sockaddr_in6 is declared in /usr/include/netinet6/in6.h,
      which is included by /usr/include/netinet/in.h.
      
      Indeed, per https://man7.org/linux/man-pages/man7/ipv6.7.html
      
          #include <sys/socket.h>
          #include <netinet/in.h>
      
      should be included, and our own gcc/ada/gsocket.h also has
      
          #if !(defined (VMS) || defined (__MINGW32__))
          #include <sys/socket.h>
          #include <sys/un.h>
          #include <netinet/in.h>
          :
          #endif
      
      libcody/ChangeLog:
      
      2020-12-21  Gerald Pfeifer  <gerald@pfeifer.com>
      
      	* netserver.cc: Include <netinet/in.h>.
      cf22f78f
    • Nathan Sidwell's avatar
      libcody: Add ranlib · 626b63d6
      Nathan Sidwell authored
      Add RANLIB.
      
      	libcody/
      	* Makefile.in (RANLIB): New var.
      	* Makesub.in (libcody.a): Apply RANLIB.
      	* configure.ac: Call AC_PROG_RANLIB.
      	* configure: Rebuilt.
      626b63d6
    • Nathan Sidwell's avatar
      libcody: to_string is not always available [PR 98412] · 119d7478
      Nathan Sidwell authored
      to_string is not always available, so don't use it.
      
      	libcody/
      	* buffer.cc (MessageBuffer::AppendInteger): Workaround
      	to_string's non-ubiquity.
      119d7478
    • Nathan Sidwell's avatar
      libcody: Add netinet.h · 31705b06
      Nathan Sidwell authored
      We explicitly need to inlude netinet.h, (despite what happened on my test systems)
      
      	libcody/
      	* netclient.cc: Add netinet.h.
      31705b06
  13. Dec 18, 2020
  14. Dec 17, 2020
    • Nathan Sidwell's avatar
      libcody: Allow PIC [PR 98324] · d1ad55c4
      Nathan Sidwell authored
      While this doesn't fix 98324, it was an omission.  Cribbed code from
      libcpp to build libcody as PIC.
      
      	libcody/
      	* configure.ac: Add --enable-host-shared.
      	* Makefile.in: Add FLAGPIC.
      	* configure: Regenerated.
      d1ad55c4
    • Nathan Sidwell's avatar
      libcody: Remove nop asm · 5357b162
      Nathan Sidwell authored
      This asm was a useful place for gdb to drop a breakpoint and make it
      clear where you were when debugging.  I took a punt that 'surely every
      arch has a nop instruction'. Well, no, some apparently have nops with
      operands (what, do nothing harder? :)
      
      	libcody/
      	* fatal.cc (HCF): Remove nop breakpoint lander.
      5357b162
    • GCC Administrator's avatar
      Daily bump. · eefe499f
      GCC Administrator authored
      eefe499f
  15. Dec 16, 2020
    • Nathan Sidwell's avatar
      c++: Another solaris header use [PR 98315] · b7b6879f
      Nathan Sidwell authored
      Rather than early-include sys/socket.h, let's allow the includer to
      tell cody no networking.
      
      	libcody/
      	* cody.hh: Allow user to set CODY_NETWORKING.
      	gcc/cp/
      	* mapper-resolver.cc: Remove early include of
      	sys/socket.h.  Specify no CODY_NETWORKING instead.
      	* module.cc: Specify no CODY_NETWORKING.
      b7b6879f
    • Jakub Jelinek's avatar
      libcody: fix --enable-checking=... follow-up [PR98311] · 652702b0
      Jakub Jelinek authored
      > The -enable-checking configure code in libcody didn't play well with
      > us.  This just uses libcpp's configurey for that piece.
      
      This doesn't set is_release anywhere, which means when --enable-checking*
      or --disable-checking isn't specified, it always treats it as
      --enable-checking=yes, while the normal gcc behavior is treat only trunk
      as --enable-checking=yes and treat release branches as
      --enable-checking=release by default.
      
      On the other side, nothing uses those ac_assert_checking and
      ac_valgrind_checking variables, so it is a waste to compute those.
      
      2020-12-16  Jakub Jelinek  <jakub@redhat.com>
      
      	* configure.ac: Compute is_release.
      	(NMS_ENABLE_CHECKING): Simplify but not computing ac_assert_checking
      	and ac_valgrind_checking the code doesn't use.
      	* configure: Regenerated.
      652702b0
    • Jonathan Wakely's avatar
      libcody: Fix build for older GCC versions · 4e42f6eb
      Jonathan Wakely authored
      Before CWG DR 1955 the controlling expression for an #elif must be
      syntactically correct, meaning this won't compile with C++11 compilers
      such as gcc 4.8:
      
      The solution is to define __has_include(X) as 0 for compilers that don't
      support it.
      
      The second problem is that when <source_location> is found, it is used
      without the std:: qualification.
      
      libcody/ChangeLog:
      
      	* internal.hh: Define fallback macros for __has_builtin and
      	__has_include. Use __has_builtin for __builtin_FILE and
      	__builtin_LINE. Define alias for std::source_location.
      4e42f6eb
    • Nathan Sidwell's avatar
      libcody: fix --enable-checking=... [PR 98311] · 4be6c4e2
      Nathan Sidwell authored
      The -enable-checking configure code in libcody didn't play well with
      us.  This just uses libcpp's configurey for that piece.
      
      	libcody/
      	* configure.ac: Use libcpp's enable-checking code.
      	* configure: Rebuilt.
      4be6c4e2
    • Nathan Sidwell's avatar
      libcody: More dashism · 6d972f51
      Nathan Sidwell authored
      There were still some dash-killing uses of +=.  Fixed thusly.
      
      	* config.m4: Replace V+="..." with V="$V..."
      	* configure: Rebuilt.
      6d972f51
    • GCC Administrator's avatar
      Daily bump. · 6e9d8651
      GCC Administrator authored
      6e9d8651
  16. Dec 15, 2020
    • Marek Polacek's avatar
      cody: Remove unused variable. · 65eac818
      Marek Polacek authored
      libcody/ChangeLog:
      
      	* buffer.cc (MessageBuffer::Lex): Remove unused variable.
      65eac818
    • Nathan Sidwell's avatar
      libcody: Work with older gccs · 4f0c800b
      Nathan Sidwell authored
      Older GCCs don't have all the exciting options we have now.  let's just
      turn them off.
      
      	libcody/
      	* Makefile.in: Disable some flags.
      4f0c800b
    • Nathan Sidwell's avatar
      Fix dashism · a582a319
      Nathan Sidwell authored
      I missed some other places that used +=
      
      	* config.m4: Avoid var+=...
      	* configure: Rebuilt
      a582a319
    • Nathan Sidwell's avatar
      libcody: Fix for dash · e48456f5
      Nathan Sidwell authored
      Apparently 'var+=...' is not a dash thing.  Fixed thusly.
      
      	* config.m4: Avoid non-dash idiom
      	* configure: Rebuilt.
      e48456f5
    • Jakub Jelinek's avatar
      c++: Add changelog files in c++tools/ and libcody/ directories · 30c41abc
      Jakub Jelinek authored
      Add ChangeLog files, so that update_version_git can then fill those in.
      30c41abc
    • Nathan Sidwell's avatar
      Add libcody · 36230329
      Nathan Sidwell authored
      In order to separate compiler from build system, C++ Modules, as
      implemented in GCC introduces a communication channel between those
      two entities.  This is implemented by libcody.  It is anticipated that
      other implementations will also implement this protocol, or use
      libcody to provide it.
      
      	* Makefile.def: Add libcody.
      	* configure.ac: Add libcody.
      	* Makefile.in: Regenerated.
      	* configure: Regenerated.
      	gcc/
      	* Makefile.in (CODYINC, CODYLIB, CODYLIB_H): New. Use them.
      	libcody/
      	* configure.ac: New.
      	* CMakeLists.txt: New.
      	* CODING.md: New.
      	* CONTRIB.md: New.
      	* LICENSE: New.
      	* LICENSE.gcc: New.
      	* Makefile.in: New.
      	* Makesub.in: New.
      	* README.md: New.
      	* buffer.cc: New.
      	* build-aux/config.guess: New.
      	* build-aux/config.sub: New.
      	* build-aux/install-sh: New.
      	* client.cc: New.
      	* cmake/libcody-config-ix.cmake
      	* cody.hh: New.
      	* config.h.in: New.
      	* config.m4: New.
      	* configure: New.
      	* configure.ac: New.
      	* dox.cfg.in: New.
      	* fatal.cc: New.
      	* gdbinit.in: New.
      	* internal.hh: New.
      	* netclient.cc: New.
      	* netserver.cc: New.
      	* packet.cc: New.
      	* resolver.cc: New.
      	* server.cc: New.
      	* tests/01-serialize/connect.cc: New.
      	* tests/01-serialize/decoder.cc: New.
      	* tests/01-serialize/encoder.cc: New.
      	* tests/02-comms/client-1.cc: New.
      	* tests/02-comms/pivot-1.cc: New.
      	* tests/02-comms/server-1.cc: New.
      	* tests/Makesub.in: New.
      	* tests/jouster: New.
      36230329
Loading