mirror of https://github.com/ceph/ceph
31 lines
720 B
Plaintext
31 lines
720 B
Plaintext
|
|
||
|
The Solaris build will only build the librados library.
|
||
|
|
||
|
Build Prerequisites
|
||
|
===================
|
||
|
|
||
|
The following Solaris packages are required for compilation:
|
||
|
|
||
|
git
|
||
|
autoconf
|
||
|
libtool
|
||
|
automake
|
||
|
gcc-c++-48
|
||
|
gnu-make
|
||
|
|
||
|
(use the "pkg install <packagename>" command to install, as root)
|
||
|
|
||
|
Download and Compile Boost 1.59 (or higher)
|
||
|
|
||
|
Building Ceph
|
||
|
=============
|
||
|
|
||
|
export LDFLAGS="-L<pathtoboost>/boost_1_59_0/stage/lib"
|
||
|
export CPPFLAGS="-I<pathtoboost>/boost/boost_1_59_0"
|
||
|
|
||
|
./autogen.sh
|
||
|
./configure --disable-server --without-fuse --without-tcmalloc --without-libatomic-ops --without-libaio --without-libxfs
|
||
|
cd src
|
||
|
gmake librados.la
|
||
|
|