mirror of
https://github.com/google/brotli.git
synced 2026-09-22 06:35:52 +00:00
Decompress segfaults on Solaris Sparc #48
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jeroen on GitHub (Oct 4, 2015).
Possibly related to https://github.com/google/brotli/issues/203
@eustas commented on GitHub (Oct 4, 2015):
Try to compile with -DBROTLI_BUILD_PORTABLE option.
@jeroen commented on GitHub (Oct 4, 2015):
This indeed seems to help. Does this flag have any side effects? Why is it not the default?
@eustas commented on GitHub (Oct 4, 2015):
We haven't taken Sparc CPUs into account.
I'll prepare patch that disables unaligned reads on Sparc CPUs.
@eustas commented on GitHub (Oct 6, 2015):
Now SPARC and ARMv6 build in "portable" mode by default.
We're going to replace black-listing with white-listing, so unrecognized architectures would be built in "portable" mode.
Thank you for pointing the problem out.