From c7443d86e0ffed4e1ba586fafe4e5d1e7c4a58f8 Mon Sep 17 00:00:00 2001 From: FoundationDB CI Date: Fri, 26 Apr 2024 13:52:50 +0000 Subject: [PATCH] enable AVX and update version for 7.3.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 8ac9419b879..56d0bf09a80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ if(POLICY CMP0135) endif() project(foundationdb - VERSION 7.3.40 + VERSION 7.3.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 8e2e022c2c6..e4288812563 100644 --- a/cmake/ConfigureCompiler.cmake +++ b/cmake/ConfigureCompiler.cmake @@ -284,7 +284,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)