Skip to content

Commit 4c0bc28

Browse files
authored
Update README with C++23 support and GCC 14 info
Added note about C++23 support and optional GCC 14 installation instructions.
1 parent 22618e4 commit 4c0bc28

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ This lets you customize the build by enabling optional plugins and features as n
6060

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

63+
⚠️ C++23 support required: Make sure your compiler supports C++23 (GCC ≥14 recommended).
64+
6365
### RHEL/CentOS:
6466

6567
#### 🧰 Requirements
@@ -75,6 +77,16 @@ $ dnf install gcc-toolset-14-libatomic-devel
7577
$ dnf install libatomic
7678
```
7779

80+
#### 🟢 Optional: Install GCC 14 (for C++23 support)
81+
```bash
82+
# Enable devtoolset
83+
$ dnf install gcc-toolset-14
84+
$ scl enable gcc-toolset-14 bash
85+
86+
# Verify version
87+
$ g++ --version # should show GCC 14.x
88+
```
89+
7890
### Debian/Ubuntu:
7991

8092
#### 🧰 Requirements

0 commit comments

Comments
 (0)