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.
libstdcxx
1 parent 42abb5f commit f79ac66Copy full SHA for f79ac66
docs/ci_build.sh
@@ -59,9 +59,14 @@ $julia -e '
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")
+ libstdcxx_ver = Base.BinaryPlatforms.detect_libstdcxx_version()
+ gcc_ver = Dict(
+ v"3.4.29" => 11,
65
+ v"3.4.30" => 12,
66
+ # ... keep this up-to-date with gcc 13
67
+ )[libstdcxx_ver]
68
+ CondaPkg.add("libgcc-ng<=$gcc_ver")
69
+ CondaPkg.add("libstdcxx-ng<=$gcc_ver")
70
Conda.add("matplotlib")
71
Conda.list()
72
'
0 commit comments