-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Ubuntu] Issue with libstdc++ cannot allocate memory in static TLS block #4799
Comments
Error: "/lib/x86_64-linux-gnu/libstdc++.so.6: cannot allocate memory in static TLS block" More information: actions/runner-images#4799
To add to the mitigation method provided, if you are using Python's
|
💚 Attempt to fix actions/runner-images#4799
💚 Attempt to fix actions/runner-images#4799
I think this issue can be fixed by now, right? |
thanks @marcelgerber for the update! |
@marcelgerber we have reverted mysql client installation to the upstream repo, this shouldn't be the issue anymore. |
Breaking changes
Due to a bug in MySql 8.0.27 (https://bugs.mysql.com/bug.php?id=105288) we had to revert the version to 8.0.26 yet it's not possible to use ubuntu upstream repo as it doesn't contain older versions. In this PR we switched the installation to install all the dependencies step by step utilizing the
dpkg -i
command #4674This leads to unpredictable behavior in libstdc++ usage when calling from Python (there could be other cases we are not aware of) — #4733, #4790
Please use the provided workaround until we either got 8.0.26 in the upstream repo or the new version 8.0.28 is released.
Possible impact
If your Python code uses some C++ libraries it can be broken.
Virtual environments affected
Mitigation ways
Reinstall MySQL version 8.0.27 using upstream repo:
The text was updated successfully, but these errors were encountered: