-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
53 lines (33 loc) · 1.58 KB
/
README
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--------------------------------------------------------------------------------
_ _ ______ _____
\ \ / (_____ \ _ (____ \
\ \/ / _____) ) ___ ___ | |_ _ \ \
) ( (_____ ( / _ \ / _ \| _)| | | |
/ /\ \ | | |_| | |_| | |__| |__/ /
/_/ \_\ |_|\___/ \___/ \___)_____/
--------------------------------------------------------------------------------
0. xrootd-lstore is a OSS layer XRootD plug-in for interfacing with LStore logistical
storage system. This plugin must be built against a respective (?) LStore version
(we think), the repo can be found at:
https://github.com/accre/lstore
1. S U P P O R T E D O P E R A T I N G S Y S T E M S
XRootD is supported on the following platforms:
* RedHat Enterprise Linux 7 and derivatives (Scientific Linux)
compiled with gcc
2. B U I L D I N S T R U C T I O N S
2.1 Build system
xrootd-lstore uses CMake to handle the build process. Please use CMake version 3 or greater (e.g. cmake3).
2.2 Build steps
* Create an empty build directory:
mkdir build
cd build
* Ensure that the correct plugin version number is set in cmake/XRootDDefaults.cmake:
if( NOT XRDLSTORE_SUBMODULE )
define_default( PLUGIN_VERSION 5 )
endif()
* Generate the build system files using cmake, ie:
cmake /path/to/the/xrootd-lstore/source -DCMAKE_INSTALL_PREFIX=/opt/xrootd
* Build the source:
make
* Install the shared libraries:
make install