summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Ignatov <sergign60@mail.ru>2018-07-09 12:45:04 +0300
committerGleb Balykov <g.balykov@samsung.com>2018-09-18 15:49:14 +0300
commit49af1c9f1f2a376d5b1db8c8865a3b609e018433 (patch)
tree33d64af0a5ae1256881cbd0dabf4093535b1827c
parentad7f20a8d47511060d52f4aa7bbd12f6c87f744c (diff)
downloadcoreclr-49af1c9f1f2a376d5b1db8c8865a3b609e018433.tar.gz
coreclr-49af1c9f1f2a376d5b1db8c8865a3b609e018433.tar.bz2
coreclr-49af1c9f1f2a376d5b1db8c8865a3b609e018433.zip
Revert "Launching the Memory Profiler on x86 emulator may lead to crash in coreclr (xmm bug)"
This reverts commit a6695d168396847df8d006a8743c84e5141824af.
-rw-r--r--src/pal/src/CMakeLists.txt2
-rw-r--r--src/utilcode/CMakeLists.txt5
2 files changed, 0 insertions, 7 deletions
diff --git a/src/pal/src/CMakeLists.txt b/src/pal/src/CMakeLists.txt
index 8670972406..dbff63dc00 100644
--- a/src/pal/src/CMakeLists.txt
+++ b/src/pal/src/CMakeLists.txt
@@ -107,8 +107,6 @@ elseif(PAL_CMAKE_PLATFORM_ARCH_ARM64)
elseif(PAL_CMAKE_PLATFORM_ARCH_I386)
add_definitions(-DBIT32=1)
set(PAL_ARCH_SOURCES_DIR i386)
- # Workaround to avoid generating sse insts for profiler
- add_compile_options(-mno-sse -mno-avx)
endif()
if(PAL_CMAKE_PLATFORM_ARCH_AMD64 AND CMAKE_SYSTEM_NAME STREQUAL Linux AND NOT CLR_CMAKE_PLATFORM_ALPINE_LINUX)
diff --git a/src/utilcode/CMakeLists.txt b/src/utilcode/CMakeLists.txt
index a7f215696b..9629e5140f 100644
--- a/src/utilcode/CMakeLists.txt
+++ b/src/utilcode/CMakeLists.txt
@@ -110,11 +110,6 @@ if(CLR_CMAKE_PLATFORM_UNIX)
add_compile_options(-fPIC)
endif(CLR_CMAKE_PLATFORM_UNIX)
-if(CLR_CMAKE_PLATFORM_ARCH_I386)
- # Workaround to avoid generating sse insts for profiler
- add_compile_options(-mno-sse -mno-avx)
-endif(CLR_CMAKE_PLATFORM_ARCH_I386)
-
add_subdirectory(dac)
add_subdirectory(dyncrt)
add_subdirectory(staticnohost)