diff options
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/breakpad.gyp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 98d36e5..d9832a1 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -104,6 +104,12 @@ { 'target_name': 'dump_syms', 'type': 'executable', + 'variables': { + # Turn off PIE because it may interfere with dump_syms' ability to + # allocate a contiguous region in memory large enough to mmap the + # entire unstripped framework in a 32-bit dump_syms process. + 'mac_pie': 0, + }, 'include_dirs++': [ # ++ ensures this comes before src brought in from target_defaults. 'pending/src', |