-
Notifications
You must be signed in to change notification settings - Fork 136
/
INSTALL
26 lines (21 loc) · 798 Bytes
/
INSTALL
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
26
Copy right 2016 Happy Fish / YuQing
libshmcache may be copied or modified under the terms of BSD License.
Please visit the libshmcache Home Page for more detail.
website: https://github.com/happyfish100/libshmcache
# step 1. compile && install libfastcommon
git clone https://github.com/happyfish100/libfastcommon
cd libfastcommon && ./make.sh && sudo ./make.sh install
# step 2. compile && install libshmcache
git clone https://github.com/happyfish100/libshmcache
cd libshmcache/src && make && sudo make install
cd tools && make && sudo make install
cd ../..
# step 3. [optional] compile && install libshmcache php extension
cd php-shmcache
phpize
./configure
make && sudo make install
cd ..
# step 4. [optional] compile && install java JNI library
cd java/jni
./make.sh && sudo make install