aklomp / base64

Fast Base64 stream encoder/decoder in C99, with SIMD acceleration
BSD 2-Clause "Simplified" License
866 stars 162 forks source link

fix: alpine gcc does not define _INTEGRAL_MAX_BITS/__WORDSIZE #76

Closed mayeut closed 2 years ago

mayeut commented 2 years ago

alpine gcc does not define _INTEGRAL_MAX_BITS/__WORDSIZE This leads to BASE64_WORDSIZE being defined to 0. Fallback to __LONG_WIDTH__ if it's defined or error out.

Builds on top of #75