diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2018-11-16 13:29:58 -0600 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2018-11-16 13:29:58 -0600 |
commit | ff07fc313283754f339ae01ce9f66769036fd773 (patch) | |
tree | 59777bad20584c108761b2f10907d1cc350365f8 /python/servo/package_commands.py | |
parent | 369983211da48f6e8c2d54792b8d34192582f7bc (diff) | |
download | servo-ff07fc313283754f339ae01ce9f66769036fd773.tar.gz servo-ff07fc313283754f339ae01ce9f66769036fd773.zip |
Add debuggable flag to magicleap taildata
Diffstat (limited to 'python/servo/package_commands.py')
-rw-r--r-- | python/servo/package_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/package_commands.py b/python/servo/package_commands.py index cbecf880262..019ec103598 100644 --- a/python/servo/package_commands.py +++ b/python/servo/package_commands.py @@ -246,6 +246,9 @@ class PackageCommands(CommandBase): mabu, "-o", target_dir, "-t", build_type, + # Servo SEGVs if we don't set the debuggable flag in the mpk's taildata + # https://github.com/servo/servo/issues/22188 + "--add-tail-data-args=--debuggable", package ] try: |