We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4515b44 + 147bb4e commit 629c11dCopy full SHA for 629c11d
etc/DependencyInstaller.sh
@@ -133,6 +133,15 @@ _installUbuntuPackages() {
133
zlib1g \
134
zlib1g-dev
135
136
+ packages=()
137
+ # Choose libstdc++ version
138
+ if _versionCompare $1 -ge 24.04; then
139
+ packages+=("libstdc++-14-dev")
140
+ elif _versionCompare $1 -ge 22.10; then
141
+ packages+=("libstdc++-12-dev")
142
+ fi
143
+ apt-get install -y --no-install-recommends ${packages[@]}
144
+
145
# install KLayout
146
if [[ $1 == "rodete" ]]; then
147
apt-get -y install --no-install-recommends klayout python3-pandas
0 commit comments