patches: Add patch to disable invalid flags

The affected file checks for the host system, instead of the target system. This is incorrect on every platform, and invalid CMake behavior.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks 2023-05-14 02:23:03 +02:00 committed by Xaymar
parent 2b5d2fbe9e
commit f8b02b0879
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
From e3b20cc569d515e5d6d76bc6a39aa7791dd20ec8 Mon Sep 17 00:00:00 2001
From: Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
Date: Sun, 14 May 2023 02:14:20 +0200
Subject: [PATCH] cmake: Disable invalid flags on universal build
---
cmake/Modules/CompilerConfig.cmake | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/cmake/Modules/CompilerConfig.cmake b/cmake/Modules/CompilerConfig.cmake
index 41c56da8b..58111b383 100644
--- a/cmake/Modules/CompilerConfig.cmake
+++ b/cmake/Modules/CompilerConfig.cmake
@@ -152,7 +152,7 @@ endif()
if(LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "(i[3-6]86|x86|x64|x86_64|amd64|e2k)")
if(NOT MSVC AND NOT CMAKE_OSX_ARCHITECTURES STREQUAL "arm64")
- set(ARCH_SIMD_FLAGS -mmmx -msse -msse2)
+# set(ARCH_SIMD_FLAGS -mmmx -msse -msse2)
endif()
elseif(LOWERCASE_CMAKE_SYSTEM_PROCESSOR MATCHES "^(powerpc|ppc)64(le)?")
set(ARCH_SIMD_DEFINES -DNO_WARN_X86_INTRINSICS)
--
2.39.2.windows.1