Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,15 +125,18 @@ RustHound supports Kerberos and GSSAPI. Therefore, it requires Clang and its dev
For example:
```bash
# Debian/Ubuntu
sudo apt-get -y update && sudo apt-get -y install gcc clang libclang-dev libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit musl-tools gcc-mingw-w64-x86-64
sudo apt-get -y update && sudo apt-get -y install gcc clang libclang-dev libgssapi-krb5-2 libkrb5-dev libsasl2-modules-gssapi-mit musl-tools gcc-mingw-w64-x86-64 rustup
```

Here is how to compile the "release" and "debug" versions using the **cargo** command.

```bash
rustup install 1.74.0
rustup default 1.74.0
git clone https://github.com/OPENCYBER-FR/RustHound
cd RustHound
cargo build --release
target/release/rusthound -h
# or debug version
cargo b
```
Expand Down