-
Notifications
You must be signed in to change notification settings - Fork 0
/
readme
46 lines (28 loc) · 1.15 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
This is the distribution of sockperf
* What is sockperf
* Licensing
* What you will need to compile aLic on Unix systems
perl 5.8+ (used by the automake tools)
GNU make tools: automake 1.7+, autoconf 2.57+, m4 1.4+ and libtool 1.4+
A Compiler, among those tested are:
. gcc4 (Ubuntu 9)
* How to install:
The sockperf package uses the GNU autotools compilation and installation
framework.
$ ./autogen.sh
$ ./configure --prefix=<path to install>
$ make
$ make install
To enable test scripts
$ ./configure --prefix=<path to install> --enable-test
To enable the documentation
$ ./configure --prefix=<path to install> --enable-doc
To enable the special scripts
$ ./configure --prefix=<path to install> --enable-tool
To compile with debug symbols and information:
$ ./configure --prefix=<path to install> --enable-debug
This will define the _DEBUG variable at compile time.
Type './configure --help' for a list of all the configure
options. Some of the options are generic autoconf options, while the aLic
specific options are prefixed with "SOCKPERF:" in the help text.
Good luck!