thrift/compiler/cpp
David Hull 0a8c34ceed THRIFT-4279 Wrong path in include directive in generated Thrift sources
Client: Erlang
Patch: David Hull <david.hull@openx.com>

This closes #1329
2017-08-09 14:58:31 +02:00
..
src THRIFT-4279 Wrong path in include directive in generated Thrift sources 2017-08-09 14:58:31 +02:00
test THRIFT-2835 Add possibility to distribute generators separately from thrift core, and load them dynamically 2016-09-26 01:42:02 +09:00
CMakeLists.txt THRIFT-2945 Add Rust support 2017-01-26 01:34:16 +01:00
coding_standards.md THRIFT-2724 - Coding standards template added all over project 2015-02-05 12:15:19 +01:00
compiler.sln THRIFT-1031 Patch to compile Thrift for vc++ 9.0 and 10.0 2011-09-23 14:25:22 +00:00
compiler.vcxproj THRIFT-2945 Add Rust support 2017-01-26 01:34:16 +01:00
compiler.vcxproj.filters THRIFT-2945 Add Rust support 2017-01-26 01:34:16 +01:00
Makefile.am THRIFT-2945 Add Rust support 2017-01-26 01:34:16 +01:00
README.md THRIFT-4034 compiler build fixes for macos sierra and some cmake cleanup for compiler 2017-01-23 08:52:04 -05:00

Build compiler using CMake

build on Unix-like System

build using cmake

Use the following steps to build using cmake:

mkdir cmake-build
cd cmake-build
cmake ..
make

Create an eclipse project

mkdir cmake-ec && cd cmake-ec
cmake -G "Eclipse CDT4 - Unix Makefiles" ..
make

Now open the folder cmake-ec using eclipse.

Cross compile using mingw32 and generate a Windows Installer with CPack

mkdir cmake-mingw32 && cd cmake-mingw32
cmake -DCMAKE_TOOLCHAIN_FILE=../build/cmake/mingw32-toolchain.cmake -DBUILD_COMPILER=ON -DBUILD_LIBRARIES=OFF -DBUILD_TESTING=OFF -DBUILD_EXAMPLES=OFF ..
cpack

Build on windows

using Git Bash

Git Bash provides flex and bison, so you just need to do this:

mkdir cmake-vs && cd cmake-vs
cmake -DWITH_SHARED_LIB=off ..

using Win flex-bison

In order to build on windows with winflexbison a few additional steps are necessary:

  1. Download winflexbison from http://sourceforge.net/projects/winflexbison/
  2. Extract the winflex bison files to for e.g. C:\winflexbison
  3. Make the CMake variables point to the correct binaries.
  • FLEX_EXECUTABLE = C:/winbuild/win_flex.exe
  • BISON_EXECUTABLE = C:/winbuild/win_bison.exe
  1. Generate a Visual Studio project:
mkdir cmake-vs && cd cmake-vs
cmake -G "Visual Studio 12" -DWITH_SHARED_LIB=off ..
  1. Now open the folder build_vs using Visual Studio 2013.

Building the Thrift IDL compiler in Windows

If you don't want to use CMake you can use the already available Visual Studio 2010 solution. The Visual Studio project contains pre-build commands to generate the thriftl.cc, thrifty.cc and thrifty.hh files which are necessary to build the compiler. These depend on bison, flex and their dependencies to work properly. Download flex & bison as described above. Place these binaries somewhere in the path and rename win_flex.exe and win_bison.exe to flex.exe and bison.exe respectively.

If this doesn't work on a system, try these manual pre-build steps.

Open compiler.sln and remove the Pre-build commands under the project's Properties -> Build Events -> Pre-Build Events.

From a command prompt:

cd thrift/compiler/cpp
flex -osrc\thrift\thriftl.cc src\thrift\thriftl.ll

In the generated thriftl.cc, comment out #include <unistd.h>

Place a copy of bison.simple in thrift/compiler/cpp

bison -y -o "src/thrift/thrifty.cc" --defines src/thrift/thrifty.yy
move src\thrift\thrifty.cc.hh  src\thrift\thrifty.hh

Bison might generate the yacc header file "thrifty.cc.h" with just one h ".h" extension; in this case you'll have to rename to "thrifty.h".

move src\thrift\version.h.in src\thrift\version.h

Download inttypes.h from the interwebs and place it in an include path location (e.g. thrift/compiler/cpp/src).

Build the compiler in Visual Studio.