blob: e5218544392215f94ec6a2f12715f47843d07ec8 [file] [log] [blame]
Andrew Geisslerc5535c92023-01-27 16:10:19 -06001From cedc84a8db468d0b6652e78a8a6667e655586b53 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Thu, 26 Jan 2023 13:00:43 -0800
4Subject: [PATCH] cmake: Do not add -msse4.2 -mpclmul on clang
5
6When testcase is compiled with clang and -msse4.2 -mpclmul is added to
7cxxflags then clang -m32 still ends up compiling the test case which is
8not correct for i386, therefore depend on yocto to pass the right flags
9from environemnt via cflags rather than manufecture them here
10
11Upstream-Status: Inappropriate [OE-Specific]
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14---
15 CMakeLists.txt | 2 +-
16 1 file changed, 1 insertion(+), 1 deletion(-)
17
18diff --git a/CMakeLists.txt b/CMakeLists.txt
19index dbef059028..981545a4e0 100644
20--- a/CMakeLists.txt
21+++ b/CMakeLists.txt
22@@ -290,7 +290,7 @@ endif()
23
24 include(CheckCXXSourceCompiles)
25 set(OLD_CMAKE_REQUIRED_FLAGS ${CMAKE_REQUIRED_FLAGS})
26-if(NOT MSVC)
27+if(NOT MSVC AND NOT CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
28 set(CMAKE_REQUIRED_FLAGS "-msse4.2 -mpclmul")
29 endif()
30
31--
322.39.1
33