Revert "vita3k: Enable AVX for the compiler"

This reverts commit 7f67d1cdcd.
This commit is contained in:
Macdu
2023-03-29 18:07:44 +02:00
committed by Zangetsu
parent a8f48d7192
commit 6da57f85fc
2 changed files with 3 additions and 13 deletions
-13
View File
@@ -31,19 +31,6 @@ endif()
enable_testing()
# Define the Architecture variable, right now it should only contain "x86_64" or "arm64"
include("external/dynarmic/CMakeModules/DetectArchitecture.cmake")
# Enable AVX on x86_64
if(ARCHITECTURE STREQUAL "x86_64")
if(MSVC)
string(APPEND CMAKE_C_FLAGS " /arch:AVX")
string(APPEND CMAKE_CXX_FLAGS " /arch:AVX")
else()
string(APPEND CMAKE_C_FLAGS " -mavx -mf16c")
string(APPEND CMAKE_CXX_FLAGS " -mavx -mf16c")
endif()
endif()
############################
########## Boost ###########
############################