From 936b70f1553c1d03eef9957d7c80e7fb3d8d4dd4 Mon Sep 17 00:00:00 2001 From: FoundationDB CI Date: Sat, 9 Dec 2023 00:59:42 +0000 Subject: [PATCH] enable AVX and update version for 7.1.45 release --- CMakeLists.txt | 2 +- cmake/ConfigureCompiler.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f7842a3ec68..a8008f3dfb3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,7 +23,7 @@ else() endif() project(foundationdb - VERSION 7.1.44 + VERSION 7.1.45 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)