Commit 32f82f40 authored by Kenton Varda's avatar Kenton Varda

Notes on MSVC.

parent 87a93c91
......@@ -173,6 +173,21 @@ and then put them together as a list later, because struct lists are encoded as
struct values, not an array of pointers to struct values. You can, however, allocate any inner
objects embedded within those structs as orphans.
### Can I use Cap'n Proto with Visual Studio, pleeeeeaaaaassssseeeee?
We'd love that, but VS2013's C++11 support just isn't there yet. Many essential features are still
missing. The November 2013 CTP is _almost_ there, but is still missing unrestricted unions,
complete constexpr support, and possibly some SFINAE tweaks.
We have it on the [roadmap](roadmap.html) to do a limited backport of the code to C++03, not just
for MSVC's sake but also some other platforms that are stuck on older compilers. This will take
a fair amount of work, however, and no one has yet volunteered to take this on. If you'd like to
work on it, [let us know](https://groups.google.com/group/capnproto)!
In the meantime, you can use Cap'n Proto on Windows with Cygwin, and version 0.5 will likely
support MinGW. We realize these solutions aren't acceptable for many people, but that's what we
can offer right now.
## Personal
### Who is paying you?
......
......@@ -58,6 +58,11 @@ under Xcode menu > Preferences > Downloads. Alternatively, compiler builds from
[Macports](http://www.macports.org/), [Fink](http://www.finkproject.org/), or
[Homebrew](http://brew.sh/) are reported to work.
Sorry, but Microsoft Visual Studio 2013
[does not implement enough of C++11](faq.html#can_i_use_capn_proto_with_visual_studio_pleeeeeaaaaassssseeeee)
to compile Cap'n Proto. We hope that the Internet Explorer of compilers will catch up in one of
the upcoming CTPs (the November 2013 CTP is almost there).
### Building from a release package
You may download and install the release version of Cap'n Proto like so:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment