From 719d7f976a2deb74237f0bdd939af5b5eea49743 Mon Sep 17 00:00:00 2001 From: FoundationDB CI Date: Tue, 2 Apr 2024 19:23:04 +0000 Subject: [PATCH] enable AVX and update version for 7.3.37 release --- CMakeLists.txt | 2 +- cmake/ConfigureCompiler.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 93f3a687e8f..388b5272112 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ if(POLICY CMP0135) endif() project(foundationdb - VERSION 7.3.36 + VERSION 7.3.37 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)