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
{{ message }}
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.
If you change it to use CompressionMethod::Stored instead, then it works just fine. Older versions before the feature-gated deflate compression seem to also work, as does bzip2 and running in Release mode. Perhaps the deflate code is too deep when unoptimized, with the new feature-gating tricking the compiler somehow? Perhaps that makes it a flate2 issue? I'm also on Windows
The text was updated successfully, but these errors were encountered:
The flate2 implementation has some very large structures, which are all placed on the stack currently.
In debug mode, the size of the initial stack is too small on Windows. Your example works fine in release mode.
This code runs but then panics with
thread 'main' has overflowed its stack
:If you change it to use
CompressionMethod::Stored
instead, then it works just fine. Older versions before the feature-gated deflate compression seem to also work, as does bzip2 and running in Release mode. Perhaps the deflate code is too deep when unoptimized, with the new feature-gating tricking the compiler somehow? Perhaps that makes it a flate2 issue? I'm also on WindowsThe text was updated successfully, but these errors were encountered: