arrow-cpp: fix eval, enable linking against zstd_shared
This is a second part for #93203.
This commit is contained in:
parent
9173beb67d
commit
166a71a6ae
2 changed files with 1 additions and 3 deletions
|
@ -96,7 +96,7 @@ in stdenv.mkDerivation rec {
|
|||
"-DARROW_WITH_SNAPPY=ON"
|
||||
"-DARROW_WITH_ZLIB=ON"
|
||||
"-DARROW_WITH_ZSTD=ON"
|
||||
"-DARROW_ZSTD_USE_SHARED=OFF" # TODO use shared zstd once #91984 hits the master
|
||||
"-DARROW_ZSTD_USE_SHARED=${if enableShared then "ON" else "OFF"}"
|
||||
# Parquet options:
|
||||
"-DARROW_PARQUET=ON"
|
||||
"-DPARQUET_BUILD_EXECUTABLES=ON"
|
||||
|
|
|
@ -11426,8 +11426,6 @@ in
|
|||
arrayfire = callPackage ../development/libraries/arrayfire {};
|
||||
|
||||
arrow-cpp = callPackage ../development/libraries/arrow-cpp ({
|
||||
# Workaround until #91984 is in, this will need to be removed later.
|
||||
zstd = zstd.override { enableShared = false; };
|
||||
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform.isi686 && stdenv.cc.isGNU) {
|
||||
stdenv = overrideCC stdenv buildPackages.gcc6; # hidden symbol `__divmoddi4'
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue