mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-22 09:27:04 +00:00
Update README & fix version
This commit is contained in:
parent
d94cbfa088
commit
6937dbc3fa
2 changed files with 11 additions and 32 deletions
|
@ -5,7 +5,7 @@ set(CMAKE_VERBOSE_MAKEFILE ON)
|
||||||
|
|
||||||
project(
|
project(
|
||||||
ssldump
|
ssldump
|
||||||
VERSION 1.9
|
VERSION 1.8
|
||||||
LANGUAGES C
|
LANGUAGES C
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
37
README.md
37
README.md
|
@ -55,39 +55,18 @@ other too (but this is just a collateral damage).
|
||||||
|
|
||||||
On Debian & Ubuntu:
|
On Debian & Ubuntu:
|
||||||
```
|
```
|
||||||
apt install build-essential autoconf libssl-dev libpcap-dev libnet1-dev libjson-c-dev
|
apt install build-essential cmake ninja-build libssl-dev libpcap-dev libnet1-dev libjson-c-dev
|
||||||
./autogen.sh
|
cmake -G Ninja -B build
|
||||||
./configure --prefix=/usr/local
|
ninja -C build
|
||||||
make
|
./build/ssldump -v
|
||||||
(optional) make install
|
|
||||||
```
|
```
|
||||||
|
|
||||||
On Fedora, CentOS, RHEL & Rocky:
|
On Fedora, CentOS, RHEL & Rocky:
|
||||||
```
|
```
|
||||||
dnf install autoconf automake gcc make openssl-devel libpcap-devel libnet-devel json-c-devel
|
dnf install cmake ninja-build gcc openssl-devel libpcap-devel libnet-devel json-c-devel
|
||||||
./autogen.sh
|
cmake -G Ninja -B build
|
||||||
./configure --prefix=/usr/local
|
ninja -C build
|
||||||
make
|
./build/ssldump -v
|
||||||
(optional) make install
|
|
||||||
```
|
|
||||||
|
|
||||||
Optional configuration features (aka ./configure options):
|
|
||||||
```
|
|
||||||
--disable-optimization disable compiler optimizations (change from -O2 to -O0)
|
|
||||||
--enable-debug enable debug info (add "-g -DDEBUG" to CFLAGS)
|
|
||||||
--enable-asan enable AddressSanitizer and other checks
|
|
||||||
add "-fsanitize=address,undefined,leak -Wformat -Werror=format-security
|
|
||||||
-Werror=array-bounds" to CFLAGS
|
|
||||||
use libasan with GCC and embedded ASAN with Clang
|
|
||||||
```
|
|
||||||
|
|
||||||
Configuration examples:
|
|
||||||
```
|
|
||||||
- Use GCC with libasan, debug info and custom CFLAGS:
|
|
||||||
./configure CC=/usr/bin/gcc --enable-asan --enable-debug CFLAGS="-Wall"
|
|
||||||
|
|
||||||
- Use Clang with ASAN and no optimizations (-O0)
|
|
||||||
./configure CC=/usr/bin/clang --enable-asan --disable-optimization
|
|
||||||
```
|
```
|
||||||
|
|
||||||
# Notes
|
# Notes
|
||||||
|
|
Loading…
Reference in a new issue