Stephen Blackwell
Stephen Blackwell
Thanks for the response. I have some old (>10yr) code I have to maintain that uses DomainParticipantFactory and it has some issues so I wanted to upgrade. I have always...
Do you know if there is any documentation for the "Traditional API"? I suspect that you are correct and that I will be able to modify my code to remove...
I've been trying to install cyclone DDS on my old system. I had to upgrade cmake and bison (BTW is there a way to specify the location of bison? I...
OK! We are getting there. I have cyclonedds built and installed. I used the BISON_EXECUTABLE and SENABLE_SECURITY=OFF (at least for now). Thanks for your help. Now I am trying to...
Hi @eboasson, it has been a 4 day weekend here so I'm just getting back to this. I tried your suggestion but it had no effect. I got the same...
If I remove the PRIu32 from that line it builds. There are lots of warnings and notes but it does compile.
I trying to install this on a CentOS 7 system. On this system the /usr/include/inttypes.h file contains this: > /* The ISO C99 standard specifies that these macros must only...
OK. If I add that #if clause to cxx/src/ddscxx/include/dds/core/detail/inttypes.hpp and change the #include to #include , then it will build. /usr/include/inttypes.h includes on both the Ubuntu system and the CentOS7...
BTW, is there a reason that the maximum domain id is hard-coded to 230? src/ddscxx/src/org/eclipse/cyclonedds/domain/DomainParticipantDelegate.cpp, line 134: > if ((id != org::eclipse::cyclonedds::domain::default_id()) && (id > 230)) { > ISOCPP_THROW_EXCEPTION(ISOCPP_INVALID_ARGUMENT_ERROR, "Invalid...
OK so I will create an account and create a pull request will the changes to src/idlcxx/CMakeLists.txt, cxx/src/ddscxx/include/dds/core/detail/inttypes.hpp and the deletion of the check of domain id in src/ddscxx/src/org/eclipse/cyclonedds/domain/DomainParticipantDelegate.cpp. I...