-
-
Notifications
You must be signed in to change notification settings - Fork 474
Debugging How-To #2353
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Debugging How-To #2353
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- changed command line from `--debug` to `--remote-debugger="REMOTE-DEBUGGER-CONFIG"` - removed configuration via pyproject.toml
…e debugger instead of a .pth file - moved `remote_debugger` to AppConfig
… package "briefcase-remote-debugger".
…source code at runtime (eg. via 'll' in pdb).
- Added "--debugger-host" and "--debugger-port" for run command. - Removed multiple modes (client/server) for one debugger. It was to complicated. - Added "debug_reqires" to pyproject.toml for debug requirements - changed to "https://github.com/timrid/briefcase-debugadapter"
…ger is saved inside the AppConfig. The "debug_mode" is now a boolean.
# Conflicts: # src/briefcase/commands/base.py # src/briefcase/commands/build.py # src/briefcase/commands/create.py # src/briefcase/commands/run.py # src/briefcase/commands/update.py # src/briefcase/config.py # src/briefcase/platforms/android/gradle.py # src/briefcase/platforms/iOS/xcode.py # src/briefcase/platforms/linux/appimage.py # src/briefcase/platforms/linux/flatpak.py # src/briefcase/platforms/linux/system.py # src/briefcase/platforms/macOS/__init__.py # src/briefcase/platforms/web/static.py # src/briefcase/platforms/windows/__init__.py # tests/commands/build/conftest.py # tests/commands/build/test_call.py # tests/commands/create/conftest.py # tests/commands/create/test_install_app_requirements.py # tests/commands/run/conftest.py # tests/commands/run/test_call.py # tests/commands/update/conftest.py # tests/commands/update/test_update_app.py # tests/integrations/flatpak/test_Flatpak__run.py # tests/platforms/android/gradle/test_run.py # tests/platforms/iOS/xcode/test_create.py # tests/platforms/iOS/xcode/test_run.py # tests/platforms/iOS/xcode/test_update.py # tests/platforms/linux/appimage/test_run.py # tests/platforms/linux/flatpak/test_run.py # tests/platforms/linux/system/test_run.py # tests/platforms/linux/test_LocalRequirementsMixin.py # tests/platforms/macOS/app/test_create.py # tests/platforms/macOS/app/test_run.py # tests/platforms/macOS/xcode/test_run.py # tests/platforms/web/static/test_run.py # tests/platforms/windows/app/test_run.py # tests/platforms/windows/visualstudio/test_run.py
# Conflicts: # src/briefcase/config.py
- added `supports_debugger` flag to the commands, so that an error is raised on not supported platforms
# Conflicts: # docs/how-to/index.rst # src/briefcase/commands/base.py # tests/commands/update/test_call.py
Removed Android specific documentation that is not part of this PR
4 tasks
Contributor
Author
|
This PR is now obsolete, as #2173 has been merged. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds a how-to guide for debugger support.
This PR need the following PRs to be merged to make sense.
--debugoption tobriefcase run#2173--debugoption on iOS #2352--debugoption on Android #2351This will fix
PR Checklist: