- 24 Nov, 2014 4 commits
-
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
The project file still only compiles a test binary, but it should be easy to separate out a library project from here. Thanks again to Bryan Boreham <bjboreham@gmail.com> for much help getting this working.
-
Kenton Varda authored
-
- 22 Nov, 2014 5 commits
-
-
Kenton Varda authored
This prevents the compiler from reporting warnings in these headers while compiling application code. Hopefully this will stem the never-ending stream of complaints from people who enable pedantic warnings.
-
Kenton Varda authored
Fix bug where EzRpcClient would segfault if the target host resolved to multiple addresses and the connection to the first of those failed.
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
-
- 18 Nov, 2014 2 commits
-
-
Kenton Varda authored
-
Kenton Varda authored
-
- 17 Nov, 2014 1 commit
-
-
Kenton Varda authored
-
- 16 Nov, 2014 1 commit
-
-
David Renshaw authored
-
- 13 Nov, 2014 1 commit
-
-
Kenton Varda authored
-
- 09 Nov, 2014 5 commits
-
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
-
Kenton Varda authored
-
- 06 Nov, 2014 1 commit
-
-
Kenton Varda authored
-
- 04 Nov, 2014 1 commit
-
-
Kenton Varda authored
The 'objectId' field is now deprecated. Long-term, each vat will export no more than one "bootstrap interface" which can be obtained via 'Bootstrap'. Restoring SturdyRefs will be accomplished through higher-level interfaces specific to the VatNetwork in use. See comments for 'Bootstrap' in rpc.capnp for more discussion.
-
- 01 Nov, 2014 3 commits
-
-
Philip Quinn authored
This removes all instances of the zero-length brand dependencies arrays (04a9c84d).
-
Philip Quinn authored
-
Philip Quinn authored
-
- 31 Oct, 2014 3 commits
-
-
Philip Quinn authored
-
Philip Quinn authored
-
Philip Quinn authored
-
- 30 Oct, 2014 1 commit
-
-
Philip Quinn authored
Zero-length arrays are a GNU extension.
-
- 29 Oct, 2014 2 commits
-
-
Philip Quinn authored
-
Philip Quinn authored
With CAPNP_LITE=1, the command-line tools will not be built, and the tests cannot be built without EXTERNAL_CAPNP=1 (BUILD_TESTING=0 needs to be set if the tests are not desired).
-
- 28 Oct, 2014 1 commit
-
-
Kenton Varda authored
Fix occasional evolution-test failure caused by List(Bool)->List(struct) upgrades no longer being allowed.
-
- 27 Oct, 2014 1 commit
-
-
Philip Quinn authored
The changes to 'capnp/generated-header-support.h' in [b469079d] need to be applied to both sides of the `#if CAPNP_LITE` conditional.
-
- 26 Oct, 2014 5 commits
-
-
Joshua Warner authored
-
Kenton Varda authored
Extended discussion: https://groups.google.com/d/msg/capnproto/lRlWBOglQv4/8-Qo96AcZQIJ
-
Kenton Varda authored
Extended discussion: https://groups.google.com/d/msg/capnproto/lRlWBOglQv4/8-Qo96AcZQIJ
-
Philip Quinn authored
-
Kenton Varda authored
To use, pass --disable-reflection to the configure script. This produces a smaller runtime library. However, using it for this purpose is not recommended. The main purpose of lite mode is to define a subset of Cap'n Proto which might plausibly compile under MSVC. MSVC still lacks full support for constexpr and expression SFINAE; luckily, most of our use of these things relates to reflection, and not all users need reflection. Cap'n Proto lite mode inherits its name from Protocol Buffers' lite mode. However, there are some key differences: - Protobuf generated code included global constructors related to registering descriptors and extensions. For many people, this was the main reason to use lite mode: to get rid of these global constructors and achieve faster startup times. Cap'n Proto, on the other hand, never had global constructors in the first place. - Schemas are actually still available in lite mode, though only in their raw (Cap'n Proto structure) form. Only the schema API (which wraps the raw schemas in a more convenient interface) and reflection API (which offers a convenient way to use the schemas) are unavailable. - Lite mode is enabled in an application by defining CAPNP_LITE rather than by specifying an annotation in the schema file. This better-reflects real-world usage patterns, where you typically want to enable lite mode application-wide anyway. - We do not build the lite mode library by default. You must request it by passing --disable-reflection to the configure script. Before you can do that, you must have a prebuilt Cap'n Proto compiler binary available, since the compiler can't be built without reflection. - Relatedly, the lite mode library is built with the same name as the full library. This library is not intended to be installed. If anything it should be statically linked. But, mostly the option only exists on non-MSVC platform to give us a way to test that we haven't broken lite mode.
-
- 25 Oct, 2014 3 commits
-
-
Kenton Varda authored
-
David Renshaw authored
-
Kenton Varda authored
See changes to test.capnp for example. Currently only supported through generated code, not in the dynamic API. Not exactly sure how to expose this in the dynamic API...
-