diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2018-11-16 21:50:35 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-16 21:50:35 -0500 |
commit | ef9e892aa11e0a4870715fa72cdcc56a53abf68a (patch) | |
tree | bfd80e24f2f1575ef9fbc635062c524e8bcab0ad | |
parent | e50e2621fe90c443271ae29ab6ee72799fdad918 (diff) | |
parent | ff07fc313283754f339ae01ce9f66769036fd773 (diff) | |
download | servo-ef9e892aa11e0a4870715fa72cdcc56a53abf68a.tar.gz servo-ef9e892aa11e0a4870715fa72cdcc56a53abf68a.zip |
Auto merge of #22210 - asajeffrey:magicleap-very-well-hidden-flag, r=jdm
Add debuggable flag to magicleap taildata
<!-- Please describe your changes on the following line: -->
---
<!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: -->
- [X] `./mach build -d` does not report any errors
- [X] `./mach test-tidy` does not report any errors
- [X] These changes do not require tests because they fix a crash
<!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.-->
<!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. -->
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/22210)
<!-- Reviewable:end -->
-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: |