compressor/zstd: fix build options

Among other things, pass -O3, so that it goes faster.

Huge thank you to Yann Collet for identifying this as a build issue!

Signed-off-by: Sage Weil <sage@redhat.com>
This commit is contained in:
Sage Weil 2017-11-12 09:54:13 -06:00
parent 61107200a5
commit e9c0f05323

View File

@ -1,7 +1,7 @@
# zstd
# libzstd - build it statically
set(ZSTD_C_FLAGS -fPIC -Wno-unused-variable -O3)
set(ZSTD_C_FLAGS "-fPIC -Wno-unused-variable -O3")
include(ExternalProject)
ExternalProject_Add(zstd_ext