# Compiling Compile on Linux or in WSL. Compile libsodium for the host: ```bash cd ../libsodium ./configure --disable-shared --enable-static --prefix="$PWD/install-host" make -j make install ``` Then compile and run password-hash: ```bash cd ../password-hash cargo run --release [--target x86_64-unknown-linux-gnu] ```