From da6380912f715a693de740c4c2454d96b09ddb15 Mon Sep 17 00:00:00 2001 From: FoundationDB CI Date: Thu, 21 Sep 2023 04:15:00 +0000 Subject: [PATCH] enable AVX and update version for 7.1.41 release --- CMakeLists.txt | 2 +- cmake/ConfigureCompiler.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ae9fe81e9ac..a966a400fe3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ else() endif() project(foundationdb - VERSION 7.1.40 + VERSION 7.1.41 DESCRIPTION "FoundationDB is a scalable, fault-tolerant, ordered key-value store with full ACID transactions." HOMEPAGE_URL "http://www.foundationdb.org/" LANGUAGES C CXX ASM) diff --git a/cmake/ConfigureCompiler.cmake b/cmake/ConfigureCompiler.cmake index 7e50469ba6a..e52d8665ee8 100644 --- a/cmake/ConfigureCompiler.cmake +++ b/cmake/ConfigureCompiler.cmake @@ -253,7 +253,7 @@ else() set(USE_AVX512F OFF) endif() endif() - set(USE_AVX OFF CACHE BOOL "Enable AVX instructions") + set(USE_AVX ON CACHE BOOL "Enable AVX instructions") if (USE_AVX) if (CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "^x86") add_compile_options(-mavx)