Skip to content
Merged
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
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ This lets you customize the build by enabling optional plugins and features as n

**Note:** Some plugins may require additional dependencies beyond the basic requirements.

⚠️ C++23 support required: Make sure your compiler supports C++23 (GCC ≥14 recommended).

### RHEL/CentOS:

#### 🧰 Requirements
Expand All @@ -75,6 +77,16 @@ $ dnf install gcc-toolset-14-libatomic-devel
$ dnf install libatomic
```

#### 🟢 Optional: Install GCC 14 (for C++23 support)
```bash
# Enable devtoolset
$ dnf install gcc-toolset-14
$ scl enable gcc-toolset-14 bash

# Verify version
$ g++ --version # should show GCC 14.x
```

### Debian/Ubuntu:

#### 🧰 Requirements
Expand Down
Loading