Chromium Code Reviews| Index: tools/gyp/configurations_make.gypi |
| diff --git a/tools/gyp/configurations_make.gypi b/tools/gyp/configurations_make.gypi |
| index c58a63a32adfc7f703ff1af68bf6e0061c9238d1..73d7350fafcebd4f10c6844c8b362c4f43cde10d 100644 |
| --- a/tools/gyp/configurations_make.gypi |
| +++ b/tools/gyp/configurations_make.gypi |
| @@ -91,12 +91,17 @@ |
| 'Dart_Debug': { |
| 'cflags': [ |
| '-O<(dart_debug_optimization_level)', |
| + # The sampling profiler uses the frame pointer to walk the stack. |
| '-fno-omit-frame-pointer', |
| ], |
| }, |
| 'Dart_Release': { |
| - 'cflags': [ '-O3', ], |
| + 'cflags': [ |
| + '-O3', |
| + # The sampling profiler uses the frame pointer to walk the stack. |
| + '-fno-omit-frame-pointer', |
|
srdjan
2013/12/03 22:18:09
Adding this used to hurt performance. Have you che
|
| + ], |
| }, |
| }, |
| }, |