]> The Tcpdump Group git mirrors - tcpdump/blob - doc/README.solaris.md
afdd8f7356e1ddf10cd6a2fb33f75abb155c3fbe
[tcpdump] / doc / README.solaris.md
1 # Compiling tcpdump on Solaris and related OSes
2
3 * Autoconf works everywhere.
4
5 ## OmniOS r151042/AMD64
6
7 * Both system and local libpcap are suitable.
8 * CMake 3.23.1 works.
9 * GCC 11.2.0 and Clang 14.0.3 work.
10
11 ## OpenIndiana 2021.04/AMD64
12
13 * Both system and local libpcap are suitable.
14 * CMake 3.21.1 works.
15 * GCC 7.5.0 and GCC 10.3.0 work, Clang 9.0.1 works.
16
17 For reference, the tests were done using a system installed from
18 `OI-hipster-text-20210430.iso` plus the following packages:
19 ```shell
20 xargs -L1 pkg install <<ENDOFTEXT
21 developer/build/autoconf
22 developer/build/cmake
23 developer/gcc-10
24 developer/clang-90
25 ENDOFTEXT
26 ```
27
28 ## Oracle Solaris 11.4.42/AMD64
29
30 * Both system and local libpcap are suitable.
31 * GCC 11.2 and Clang 11.0 work.
32
33 For reference, the tests were done on a VM booted from `sol-11_4-vbox.ova`
34 and updated to 11.4.42.111.0 plus the following packages:
35 ```shell
36 xargs -L1 pkg install <<ENDOFTEXT
37 developer/build/autoconf
38 developer/gcc
39 developer/llvm/clang
40 ENDOFTEXT
41 ```