-
Notifications
You must be signed in to change notification settings - Fork 18
/
INSTALL
53 lines (35 loc) · 1.25 KB
/
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
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
--------------------------------------------------------------------------------
HOW TO INSTALL
--------------------------------------------------------------------------------
1. Pre-Requirements
Agent:
- JDK 7 or later
- Maven2 or later
- Ant 1.8 or later
- pcre-devel 6 or later
- net-snmp-devel 5.3 or later
- binutils 2 or later
- Intel(R) Threading Building Blocks (TBB)
* If you compile the agent for Raspberry Pi 2, you have to install
libtbb2 and libtbb-dev in official Debian repository.
Analyzer:
- JDK 13 or later
- JavaFX 13 or later
- Maven2 or later
2. How to build
Run `configure` and `make` as following:
$ ./configure --with-jdk=/path/to/JDK13
$ make
configure script provides several useful options.
If you want to know them, please run "./configure --help" .
3. How to install
run make install
$ su -
# cd /path/to/source
# make install
4. How to rpmbuild
SPEC for rpmbuild is located at specs/heapstats.spec .
This SPEC can build two RPMs:
* heapstats: HeapStats agent and MBean.
* heapstats-cli: HeapStats CLI.
--------------------------------------------------------------------------------