We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22618e4 commit 4c0bc28Copy full SHA for 4c0bc28
1 file changed
README.md
@@ -60,6 +60,8 @@ This lets you customize the build by enabling optional plugins and features as n
60
61
**Note:** Some plugins may require additional dependencies beyond the basic requirements.
62
63
+⚠️ C++23 support required: Make sure your compiler supports C++23 (GCC ≥14 recommended).
64
+
65
### RHEL/CentOS:
66
67
#### 🧰 Requirements
@@ -75,6 +77,16 @@ $ dnf install gcc-toolset-14-libatomic-devel
75
77
$ dnf install libatomic
76
78
```
79
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
90
### Debian/Ubuntu:
91
92
0 commit comments