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.
libgcc-ng
libstdcxx-ng
1 parent 1ffce41 commit 9bf1ebcCopy full SHA for 9bf1ebc
docs/ci_build.sh
@@ -57,6 +57,11 @@ $julia -e '
57
using Conda; env, rc = Conda.ROOTENV, Conda.conda_rc(Conda.ROOTENV)
58
Conda.runconda(`config --set auto_update_conda False --file $rc --force`, env)
59
Pkg.add("PyCall"); Pkg.build("PyCall"; verbose=true)
60
+ # see discourse.julialang.org/t/glibcxx-version-not-found/82209/8
61
+ # julia 1.8.3 is built with libstdc++.so.6.0.29, so we must restrict to this version (gcc 11.3.0, not gcc 12.2.0)
62
+ ver = 11
63
+ CondaPkg.add("libgcc-ng<=$ver")
64
+ CondaPkg.add("libstdcxx-ng<=$ver")
65
Conda.add("matplotlib")
66
Conda.list()
67
'
0 commit comments