-
Notifications
You must be signed in to change notification settings - Fork 20
/
BUILD.TXT
executable file
·81 lines (50 loc) · 1.83 KB
/
BUILD.TXT
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
Building Protolib
=================
Protolib can be built using the Waf build tool, included in the distribution.
To see a full list of options, run:
./waf -h
Configuring
-----------
To perform the configure checks, run:
./waf configure
Some options for the configure step:
--prefix=<DIR> - Directory to install files to (Default - /usr/local)
--debug - Builds a debug build (with debugging symbols), otherwise an
optimized library is built.
--build-python - Builds the Python extension (*see notes for building
protolib python bindings via setup.py outside w/out waf)
--build-java - Builds the Java extension
You must set the JAVA_HOME environment variable to the location of your
JDK directory
Waf has issues building the java extensions with OpenJDK. Oracle JDK
is recommended.
Building
--------
To build the library, simply run:
./waf
To build examples along with the library, run:
./waf --targets=ex1,ex2,...
Where ex1,ex2 is the name of the example you want to build (see ./waf list).
Additionally, you can add the "--targets=*" flag to build all the example
programs.
Installing
----------
To install, run:
./waf install
This will install the compiled library and headers to wherever your prefix was
specified. (See configure flags)
Uninstalling
------------
Waf tracks the files it installs, so run:
./waf uninstall
to remove all files from a previous ./waf install
Cleaning
--------
./waf clean
will delete all compiled files and configuration settings.
./waf distclean
will do the same as clean, and additionally delete the waf cache files.
Building protolib python bindings without waf
---------------------------------------------
Build protolib (make -f Makefile.<os>)
python setup.py install (build & install protolib python bindings)