From 35c3e14586224b7d2bb91efa7301714064362339 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Thu, 5 Jun 2025 15:38:24 -0400 Subject: [PATCH] Remove -mavx --- CMakeLists.txt | 3 --- 1 file changed, 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7c2acbb..af552ab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -84,9 +84,6 @@ check_cxx_source_compiles("int main(){}" HAS_VERSION_SCRIPT FAIL_REGEX "warning:") cmake_pop_check_state() -if(CMAKE_SYSTEM_PROCESSOR STREQUAL x86_64) - add_compile_options(-mavx) -endif() if(CMAKE_SYSTEM_NAME STREQUAL Linux) add_link_options(LINKER:--gc-sections) endif()