-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathINSTALL
47 lines (31 loc) · 999 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
HOTPATCH INSTALLATION
======================
Pre-requisites:
1. CMake: You need to have cmake 2.6 or above installed.
2. Compilers: gcc is needed along with standard headers.
3. GNU Make: make is needed to build the code.
How to install:
Release build:
$ make
$ make test
$ make install
By default make will try to install in /usr/local. If you want your custom
directory then you can do the following:
$ make install PREFIX=/path/to/install
If you're on a 64-bit system and want to compile for 32-bit, you can do the
following:
$ make ARCH=i386
$ make test ARCH=i386
$ make install ARCH=i386
Debug build:
$ make debug
$ make testdebug
$ make installdebug
By default make will try to install in /usr/local. If you want your custom
directory then you can do the following:
$ make installdebug PREFIX=/path/to/install
If you're on a 64-bit system and want to compile for 32-bit, you can do the
following:
$ make debug ARCH=i386
$ make testdebug ARCH=i386
$ make installdebug ARCH=i386