On 10/30/2013 4:16 PM, Thomas Pfaff wrote:
"A parallel implementation of gzip for modern multi-processor,
multi-core machines." -- http://zlib.net/pigz/
Seems ok to me.
But you must remove the CFLAGS optimisation in the Makefile.
Thanks. Changed -O3 to -O2, which I assume is fine.
No. You must remove it.
Try:
MAKE_FLAGS = CFLAGS="${CFLAGS}"
or
MAKE_FLAGS = CFLAGS="${CFLAGS} -Wall -Wextra"
if you really want the extra warnings (I don't think you need them).
Looking at that patch though, I would do this:
MAKE_FLAGS = CC="${CC}" CFLAGS="${CFLAGS}"
You can then remove the patch (and the patches/ dir) entirely.
~Brian