You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GCC defaults to full LTO with --with-lto=yes passed. Clang defaults to ThinLTO with --with-lto=yes passed. You need --with-lto=full to enable full LTO.
The text was updated successfully, but these errors were encountered:
This might explain the slowdown on macOS and the rest. It has been observed in the past to cause a tremendous slowdown for macOS python/cpython#122580.
This also means the tail-calling interpreter without with ThinLTO is already significantly faster than LTO-full 👀 .
Uh oh!
There was an error while loading. Please reload this page.
GCC defaults to full LTO with
--with-lto=yes
passed. Clang defaults to ThinLTO with--with-lto=yes
passed. You need--with-lto=full
to enable full LTO.The text was updated successfully, but these errors were encountered: