Skip to content
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

[LLDB] Make 'process load' take remote os path delimiter into account #98690

Merged
merged 1 commit into from
Jul 16, 2024

Commits on Jul 15, 2024

  1. [LLDB] Make 'process load' take remote os path delimiter into account

    Currently, if we execute 'process load' with remote debugging,
    it uses host's path delimiter to lookup files on target machine.
    If we run remote debugging of Linux target on Windows and execute
    'process load C:\foo\a.so', lldb-server tries to load \foo\a.so
    instead of /foo/a.so.
    
    It affects several API tests.
    
    This commit fixes that error. Also, it contains minor fixes for
    TestLoadUnload.py for testing on Windows host and Linux target.
    dzhidzhoev committed Jul 15, 2024
    Configuration menu
    Copy the full SHA
    377f4ad View commit details
    Browse the repository at this point in the history