summaryrefslogtreecommitdiff
path: root/configurecompiler.cmake
diff options
context:
space:
mode:
authorGleb Balykov/Platform Lab /SRR/Engineer/Samsung Electronics <g.balykov@samsung.com>2020-08-25 11:35:27 +0300
committer이형주/Common Platform Lab(SR)/Staff Engineer/삼성전자 <leee.lee@samsung.com>2020-08-25 17:35:27 +0900
commit7a0186fe2611e00cd8019adced7af3a269e2e7f4 (patch)
treee08f2c1712e927ea6adc9087d2ea6d000ffc8bf9 /configurecompiler.cmake
parentdc5ea62a519533d193194025ad31135262acf0e9 (diff)
downloadcoreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.tar.gz
coreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.tar.bz2
coreclr-7a0186fe2611e00cd8019adced7af3a269e2e7f4.zip
* Add -msse2 compile option Cherry-pick of https://github.com/dotnet/runtime/pull/33135 * Use prefixed hex format in asm Cherry-pick of https://github.com/dotnet/runtime/pull/33205 * [Tizen] Add CoreCLR tests build dependencies v3.1.3 for x86 * [Tizen] Add CoreCLR tests build dependencies v3.1.3 for x64 * [Tizen] Allow build of tests for x86/x64
Diffstat (limited to 'configurecompiler.cmake')
-rw-r--r--configurecompiler.cmake4
1 files changed, 4 insertions, 0 deletions
diff --git a/configurecompiler.cmake b/configurecompiler.cmake
index 0f4594415e..cf38d53f37 100644
--- a/configurecompiler.cmake
+++ b/configurecompiler.cmake
@@ -572,6 +572,10 @@ if(CLR_CMAKE_PLATFORM_UNIX_ARM)
endif(ARM_SOFTFP)
endif(CLR_CMAKE_PLATFORM_UNIX_ARM)
+if(CLR_CMAKE_PLATFORM_UNIX_X86)
+ add_compile_options(-msse2)
+endif()
+
if(CLR_CMAKE_PLATFORM_UNIX_ARM64)
if("$ENV{__DistroRid}" MATCHES "tizen.*")
add_compile_options(-target aarch64-tizen-linux-gnu)