bug#47715: [PATCH] gzip.c: use a more portable alignment
commit23a870d14a49803c6d2579071886c1acf497c9d1
authorDmitry V. Levin <ldv@altlinux.org>
Sun, 11 Apr 2021 20:00:00 +0000 (11 20:00 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Mon, 12 Apr 2021 01:24:37 +0000 (11 18:24 -0700)
tree4441f99ace1deb4260f4334561c80a6062fb60f0
parent34db0a240e9d50dd6112f84155b677abfb409736
bug#47715: [PATCH] gzip.c: use a more portable alignment

The alignment of 8192 introduced by commit
be0c5581e38332b2ffa8a4cf92076cfde02872b4 is not quite portable:
eu-elflint --gnu-ld complains about the result gzip executable
with the following diagnostics:
section [25] '.bss' not fully contained in segment of program header entry 6

* gzip.c [__alignas_is_defined] (BUFFER_ALIGNED): Decrease alignment
from 8192 back to 4096.
gzip.c