Quick Guide to Compiling Boost for op64 - r52/op64 GitHub Wiki
Instructions as of Boost 1.60.0
- Acquire a copy of the Boost library from http://www.boost.org/
- Open up a Visual Studio command prompt (and navigate to the directory of the Boost library)
- Build Boost.Build using
bootstrap.bat
- Build Boost with
b2 --with-filesystem --with-log toolset=<compiler> address-model=64 variant=release link=shared threading=multi runtime-link=shared stage
- Do it again except with
variant=debug
for debug builds - Copy the built lib files from
$BOOST_ROOT$/stage/lib
toop64/Libraries/boost/win_x64/lib
and copy the DLLs to op64's main directory - Remember to set the environment variable
BOOST_ROOT
to the Boost directory
Tested on Ubuntu 14.04
- Acquire a copy of the Boost library from http://www.boost.org/
- Navigate to the directory of the Boost library where you've extracted it
- Build Boost.Build using
./bootstrap.sh --prefix=/usr/local
- Build Boost with
./b2 --with-filesystem --with-log toolset=<compiler> address-model=64 variant=release link=shared threading=multi runtime-link=shared install
. Sufficient rights to/usr/local/
orsudo
will be required.