From: Brian Robbins Date: Tue, 6 Oct 2015 23:36:54 +0000 (-0700) Subject: Compile with frame pointers on UNIX builds. X-Git-Tag: accepted/tizen/base/20180629.140029~6336^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ebc35416c4b57a3415f4f1bbde385e159eb520ca;p=platform%2Fupstream%2Fcoreclr.git Compile with frame pointers on UNIX builds. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index d899ee6..ab351ed 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)