Merge pull request #245884 from svniemeijer/tiledb-avx2

This commit is contained in:
Ryan Lahfa 2023-08-27 17:10:38 +02:00 committed by GitHub
commit 0ee4c79acd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,6 +17,7 @@
, gtest
, doxygen
, fixDarwinDylibNames
, useAVX2 ? stdenv.hostPlatform.avx2Support
}:
stdenv.mkDerivation rec {
@ -34,7 +35,7 @@ stdenv.mkDerivation rec {
# unaccelerated routines.
cmakeFlags = [
"-DTILEDB_WERROR=0"
];
] ++ lib.optional (!useAVX2) "-DCOMPILER_SUPPORTS_AVX2=FALSE";
nativeBuildInputs = [
clang-tools