diff options
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d899ee6cab..ab351ed0da 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -395,6 +395,9 @@ add_compile_options(-fms-extensions ) #-fms-compatibility Enable full Microsoft Visual C++ compatibility #-fms-extensions Accept some non-standard constructs supported by the Microsoft compiler +# Disable frame pointer optimizations so profilers can get better call stacks +add_compile_options(-fno-omit-frame-pointer) + endif(CLR_CMAKE_PLATFORM_UNIX) add_subdirectory(src/debug/debug-pal) |