thrift/lib/cpp
2013-06-20 01:06:22 +02:00
..
src/thrift THRIFT-1458 cpp: use the C++ standard (c++0x or later c++11) to improve code quality and cross platform capability 2013-06-20 01:06:22 +02:00
test THRIFT-1850 make check hangs on TSocket tests in TransportTest.cpp 2013-05-03 22:39:53 +02:00
libthrift.vcxproj THRIFT-1753: Multiple C++ Windows, OSX, and iOS portability issues 2013-06-07 07:33:01 -04:00
libthrift.vcxproj.filters Merge branch 'trunk' of https://github.com/benoitdion/thrift into trunk 2012-04-14 11:03:21 +00:00
libthriftnb.vcxproj THRIFT-1753: Multiple C++ Windows, OSX, and iOS portability issues 2013-06-07 07:33:01 -04:00
libthriftnb.vcxproj.filters THRIFT-1552 Include paths for c/c++ should be prefixed with 'thrift/' 2012-04-13 09:12:31 +00:00
Makefile.am THRIFT-1968 Thrift's include path is wrong in pkg-config files 2013-05-30 09:57:00 +02:00
README THRIFT-387. Add appropriate Apache header to all code files 2009-04-08 00:19:37 +00:00
README_WINDOWS THRIFT-1558 Named Pipe and Anonymous Pipe transport for Windows 2012-04-11 21:38:56 +00:00
README.SSL THRIFT-1136 C++ SSL implementation cleanup 2011-04-12 19:23:10 +00:00
thrift-nb.pc.in THRIFT-1968 Thrift's include path is wrong in pkg-config files 2013-05-30 09:57:00 +02:00
thrift-qt.pc.in THRIFT-1968 Thrift's include path is wrong in pkg-config files 2013-05-30 09:57:00 +02:00
thrift-z.pc.in THRIFT-1968 Thrift's include path is wrong in pkg-config files 2013-05-30 09:57:00 +02:00
thrift.pc.in THRIFT-1968 Thrift's include path is wrong in pkg-config files 2013-05-30 09:57:00 +02:00
thrift.sln THRIFT-1633 Add windows build configurations to support static linking 2012-06-24 19:18:00 +00:00

Thrift C++ Software Library

License
=======

Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.

Using Thrift with C++
=====================

The Thrift C++ libraries are built using the GNU tools. Follow the instructions
in the top-level README, or run bootstrap.sh in this folder to generate the
Makefiles.

In case you do not want to open another README file, do this:
  ./bootstrap.sh
  ./configure (--with-boost=/usr/local)
  make
  sudo make install

Thrift is divided into two libraries.

libthrift
  The core Thrift library contains all the core Thrift code. It requires
  boost shared pointers, pthreads, and librt.

libthriftnb
  This library contains the Thrift nonblocking server, which uses libevent.
  To link this library you will also need to link libevent.

Linking Against Thrift
======================

After you build and install Thrift the libraries are installed to
/usr/local/lib by default. Make sure this is in your LDPATH.

On Linux, the best way to do this is to ensure that /usr/local/lib is in
your /etc/ld.so.conf and then run /sbin/ldconfig.

Depending upon whether you are linking dynamically or statically and how
your build environment it set up, you may need to include additional
libraries when linking against thrift, such as librt and/or libpthread. If
you are using libthriftnb you will also need libevent.

Dependencies
============

boost shared pointers
http://www.boost.org/libs/smart_ptr/smart_ptr.htm

libevent (for libthriftnb only)
http://monkey.org/~provos/libevent/