Add support for loongarch
[prads.git] / doc / INSTALL
blobf9e4b78c01152250ff327a964eaf9e021c548a58
1 #### PRADS INSTALL
3 # apt-get install prads
5 ### or, from source
7 ## dependencies
8 libpcap0.8 (>= 0.9.8), libpcre3 (>= 8.10), libresolv
10 # On an Ubuntu system:
11 $ sudo apt-get install rst2man libpcap0.8-dev libpcre3-dev
12 $ git clone git://github.com/gamelinux/prads.git
13 $ cd prads
14 $ make
15 $ sudo make install
17 # On a FreeBSD system (C version)
18 $ pkg_add -r pcre git gmake py26-docutils
19 $ git clone git://github.com/gamelinux/prads.git
20 $ cd prads
21 $ gmake
23 *Note: Installer doesn't work on FreeBSD, so manually copy, or symlink, the binary and config files.
26 ### Compile-time options
27 remember to `make clean` first!
29 ## Static install
30 $ make static
32 ## Build with debug options
33 $ make debug
35 ## Profiling prads
36 $ make profile
38 ## use perftools faster malloc
39 $ make TCMALLOC=y
41 ## Profile with perftools
42 $ make TCMALLOC=y PPROF=y debug
44 ## the newest, fastest libpcap into prads
45 $ git clone git://bpf.tcpdump.org/libpcap
46 $ cd libpcap && ./configure --disable-dbus && make -j2 && cd ..
47 $ make PCAPDIR=libpcap
49 *Note* that prads will now always look for libpcap in that directory!