Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: tools/gyp/configurations_make.gypi

Issue 116703003: Fix crash walking call stack on Linux. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/thread_interrupter.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gyp/configurations_make.gypi
diff --git a/tools/gyp/configurations_make.gypi b/tools/gyp/configurations_make.gypi
index 73d7350fafcebd4f10c6844c8b362c4f43cde10d..6ffc9206751a0fc8f4e240a60898545a27b76a96 100644
--- a/tools/gyp/configurations_make.gypi
+++ b/tools/gyp/configurations_make.gypi
@@ -93,6 +93,9 @@
'-O<(dart_debug_optimization_level)',
# The sampling profiler uses the frame pointer to walk the stack.
'-fno-omit-frame-pointer',
+ # Clang on Linux will still omit frame pointers from leaf functions
+ # unless told otherwise:
+ # '-mno-omit-leaf-frame-pointer',
],
},
@@ -101,6 +104,9 @@
'-O3',
# The sampling profiler uses the frame pointer to walk the stack.
'-fno-omit-frame-pointer',
+ # Clang on Linux will still omit frame pointers from leaf functions
+ # unless told otherwise:
+ # '-mno-omit-leaf-frame-pointer',
],
},
},
« no previous file with comments | « runtime/vm/thread_interrupter.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698