blob: 089ef83616e42ce605a55fceea4a312c807ed221 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Installation Instructions
*************************
When pulling from git, use the --recursive option to include sub-modules:
$ git clone --recursive https://github.com/ceph/ceph.git
And then build the configure script with:
$ ./autogen.sh
Then the usual:
$ ./configure
$ make
Note that if the FUSE library is not found, the user-space fuse client
will not be built.
If you are doing development, you may want to do
$ CXXFLAGS="-g -pg" ./configure
or similar to avoid the default (-g -O2), which includes optimizations
(-O2).
|