Skip to content

Commit 4f4b5d8

Browse files
authored
Merge pull request #3136 from Pinata-Consulting/ubuntu-25.04
setup: ubuntu 25.04
2 parents cbe07ad + a606bdb commit 4f4b5d8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

etc/DependencyInstaller.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,9 @@ _installUbuntuPackages() {
136136

137137
packages=()
138138
# Choose libstdc++ version
139-
if _versionCompare $1 -ge 24.04; then
139+
if _versionCompare $1 -ge 25.04; then
140+
packages+=("libstdc++-15-dev")
141+
elif _versionCompare $1 -ge 24.04; then
140142
packages+=("libstdc++-14-dev")
141143
elif _versionCompare $1 -ge 22.10; then
142144
packages+=("libstdc++-12-dev")

0 commit comments

Comments
 (0)