-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
63 lines (41 loc) · 1.78 KB
/
README
File metadata and controls
63 lines (41 loc) · 1.78 KB
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
TIPC utilities package for Linux README
Last updated: 08 Aug 2012
This directory contains a variety of utility programs for use with Linux TIPC,
including:
1) tipc-config
An application for run-time configuration and monitoring of TIPC.
2) PTTS (Portable TIPC Test Suite)
A basic sanity test suite that can be used to verify that major aspects of TIPC
are operating correctly.
3) TIPC demos
A collection of demo programs. The benchmark and inventory simulation demos
can be helpful in stressing certain aspects of TIPC beyond the areas covered
by PTTS.
4) TIPC pipe
A netcat like program for tipc.
Building the utilities package
------------------------------
The master makefile for the utilities package allows you to build all programs
in a single operation. (If desired, you can also build a specific utility
individually from its own sub-directory.)
If you cloned out the git repo you will need to run
./bootstrap
first, if you have the dist tarball you need only run:
./configure
make
If the TIPC include files are not properly located, find the directory that
contains the files linux/tipc.h and linux/tipc_config.h and specify this
directory in the configure stage:
./configure CFLAGS=-I<path to directory containing linux/tipc.h>
Note: In the standard Linux kernel source tree, this directory is located
at <top of source tree>/include.
The build procedure produces executable programs in the various sub-directories
that make up the package.
TIPC utilities uses autoconf and automake, to customize your build please
see the autotools and automake manuals. A few common targets are
make install
make dist
Running the utilities package
-----------------------------
Consult the README file in each sub-directory for further details on using
the associated application.