- 07 Nov, 2014 2 commits
-
-
Kenton Varda authored
Grammar fix
-
Eric Mill authored
-
- 06 Nov, 2014 1 commit
-
-
Kenton Varda authored
Add initial implementation of AnyStruct and AnyList
-
- 04 Nov, 2014 3 commits
-
-
Kenton Varda authored
Fix typos
-
Kenton Varda authored
-
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.
-
- 03 Nov, 2014 1 commit
-
-
Jo Liss authored
-
- 31 Oct, 2014 2 commits
-
-
Kenton Varda authored
Ensure CAPNP_LITE is always defined to 0 when not used
-
Philip Quinn authored
-
- 29 Oct, 2014 6 commits
-
-
Kenton Varda authored
More CMake Improvements
-
Philip Quinn authored
-
Philip Quinn authored
-
Philip Quinn authored
Also, use pkg-config (if available) to get hints about the paths.
-
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 5 commits
-
-
Kenton Varda authored
-
Philip Quinn authored
-
Philip Quinn authored
-
Kenton Varda authored
-
Kenton Varda authored
Fix occasional evolution-test failure caused by List(Bool)->List(struct) upgrades no longer being allowed.
-
- 27 Oct, 2014 2 commits
-
-
Kenton Varda authored
Fix `CAPNP_LITE` build
-
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 10 commits
-
-
Joshua Warner authored
-
Kenton Varda authored
Conflicts: c++/src/capnp/generated-header-support.h
-
Kenton Varda authored
Fix install/uninstall automake hooks for CAPNP_LITE builds
-
Kenton Varda authored
Remove redundant 'const' qualifiers
-
Kenton Varda authored
Extended discussion: https://groups.google.com/d/msg/capnproto/lRlWBOglQv4/8-Qo96AcZQIJ
-
Philip Quinn authored
The command-line tools aren't built in LITE_MODE, so there's nothing to create a symlink to.
-
Kenton Varda authored
Extended discussion: https://groups.google.com/d/msg/capnproto/lRlWBOglQv4/8-Qo96AcZQIJ
-
Philip Quinn authored
-
Kenton Varda 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 7 commits
-
-
Kenton Varda authored
-
Kenton Varda authored
Result -> Results
-
David Renshaw authored
-
Kenton Varda 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...
-
Kenton Varda authored
fix copy-paste bug in TestRpc_TailCall: add missing assertion
-
Mike Edgar authored
-
- 24 Oct, 2014 1 commit
-
-
Kenton Varda authored
-