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
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

This is the wolfSSL Command Line Utility (wolfCLU).

## Prerequisites

To build wolfSSL and wolfCLU, you will need autoconf, automake and libtool installed.
Copy link

Copilot AI Mar 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider clarifying platform/package specifics and any minimum versions (e.g., GNU autotools on Linux/macOS, package names like autoconf, automake, libtool, and note common equivalents such as libtool-bin on Debian/Ubuntu). This reduces build friction for new contributors.

Suggested change
To build wolfSSL and wolfCLU, you will need autoconf, automake and libtool installed.
To build wolfSSL and wolfCLU, you will need the GNU Autotools toolchain installed (typically the `autoconf`, `automake`, and `libtool` packages). On Debian/Ubuntu, install `autoconf`, `automake`, and `libtool` (or `libtool-bin` on older releases); on RHEL/CentOS/Fedora, install `autoconf`, `automake`, and `libtool`; on macOS, install them via Homebrew (`brew install autoconf automake libtool`) or MacPorts (`sudo port install autoconf automake libtool`).

Copilot uses AI. Check for mistakes.

## wolfSSL Installation

Configure and install wolfSSL with the following commands:
Expand Down
Loading