Vscode-cpptools: LinuxでVSをLLDBで動作させることができません

作成日 2016年09月09日  ·  3コメント  ·  ソース: microsoft/vscode-cpptools

lldb 3.7、3.8、および3.9で試してみました
デバッグを開始すると、

「デバッグを開始できません。LLDBへの接続を確立できません。デバッグ出力に詳細情報が含まれている可能性があります。」 示されています

コンソールには、使用法のヘルプが表示されます。

Usage:

  lldb -h
  lldb -v [[--] <PROGRAM-ARG-1> [<PROGRAM_ARG-2> ...]]
  lldb -a <arch> -f <filename> [-c <filename>] [-s <filename>] [-o <none>] [-S <filename>] [-O <none>] [-k <none>] [-K <filename>] [-Q] [-b] [-e] [-x] [-X] [-l <script-language>] [-d] [[--] <PROGRAM-ARG-1> [<PROGRAM_ARG-2> ...]]
  lldb -n <process-name> -w [-s <filename>] [-o <none>] [-S <filename>] [-O <none>] [-k <none>] [-K <filename>] [-Q] [-b] [-e] [-x] [-X] [-l <script-language>] [-d]
  lldb -p <pid> [-s <filename>] [-o <none>] [-S <filename>] [-O <none>] [-k <none>] [-K <filename>] [-Q] [-b] [-e] [-x] [-X] [-l <script-language>] [-d]
  lldb -P

       -h 
       --help 
            Prints out the usage information for the LLDB debugger.

       -v 
       --version 
            Prints out the current version number of the LLDB debugger.

       -a <arch>
       --arch <arch>
            Tells the debugger to use the specified architecture when starting
            and running the program.  <architecture> must be one of the
            architectures for which the program was compiled.

       -f <filename>
       --file <filename>
            Tells the debugger to use the file <filename> as the program to be
            debugged.

       -c <filename>
       --core <filename>
            Tells the debugger to use the fullpath to <path> as the core file.

       -p <pid>
       --attach-pid <pid>
            Tells the debugger to attach to a process with the given pid.

       -n <process-name>
       --attach-name <process-name>
            Tells the debugger to attach to a process with the given name.

       -w 
       --wait-for 
            Tells the debugger to wait for a process with the given pid or name
            to launch before attaching.

       -s <filename>
       --source <filename>
            Tells the debugger to read in and execute the lldb commands in the
            given file, after any file provided on the command line has been
            loaded.

       -o 
       --one-line 
            Tells the debugger to execute this one-line lldb command after any
            file provided on the command line has been loaded.

       -S <filename>
       --source-before-file <filename>
            Tells the debugger to read in and execute the lldb commands in the
            given file, before any file provided on the command line has been
            loaded.

       -O 
       --one-line-before-file 
            Tells the debugger to execute this one-line lldb command before any
            file provided on the command line has been loaded.

       -k 
       --one-line-on-crash 
            When in batch mode, tells the debugger to execute this one-line
            lldb command if the target crashes.

       -K <filename>
       --source-on-crash <filename>
            When in batch mode, tells the debugger to source this file of lldb
            commands if the target crashes.

       -Q 
       --source-quietly 
            Tells the debugger to execute this one-line lldb command before any
            file provided on the command line has been loaded.

       -b 
       --batch 
            Tells the debugger to running the commands from -s, -S, -o & -O,
            and then quit.  However if any run command stopped due to a signal
            or crash, the debugger will return to the interactive prompt at the
            place of the crash.

       -e 
       --editor 
            Tells the debugger to open source files using the host's "external
            editor" mechanism.

       -x 
       --no-lldbinit 
            Do not automatically parse any '.lldbinit' files.

       -X 
       --no-use-colors 
            Do not use colors.

       -P 
       --python-path 
            Prints out the path to the lldb.py file for this version of lldb.

       -l <script-language>
       --script-language <script-language>
            Tells the debugger to use the specified scripting language for
            user-defined scripts, rather than the default.  Valid scripting
            languages that can be specified include Python, Perl, Ruby and Tcl.
            Currently only the Python extensions have been implemented.

       -d 
       --debug 
            Tells the debugger to print out extra information for debugging
            itself.


  Notes:

       Multiple "-s" and "-o" options can be provided.  They will be processed from left to right in order, 
       with the source files and commands interleaved.  The same is true of the "-S" and "-O" options.
       The before file and after file sets can intermixed freely, the command parser will sort them out.
       The order of the file specifiers ("-c", "-f", etc.) is not significant in this regard.


全てのコメント3件

1)lldbでデバッグする場合、miフロントエンドであるlldb-miを使用する必要があります。 代わりにlldbを適切に指定したようです。

2)そうは言っても…Lldb-miには、Macで動作させるために修正しなければならないバグがいくつかあります。 これらをメインラインのlldbにプッシュするように取り組んでいますが、これはまだ行われていません。 残念ながら、それはそれが起こるまでlldbがLinux上で動作しないことを意味します。

差出人:Jean-Yves Avenard [mailto:[email protected]]
送信日:2016年9月8日木曜日17:39
宛先:Microsoft / vscode-cpptools [email protected]
件名:[Microsoft / vscode-cpptools] VSをLinux上のLLDBで動作させることができません(#215)

lldb 3.7、3.8、および3.9で試してみました
デバッグを開始すると、

「デバッグを開始できません。LLDBへの接続を確立できません。デバッグ出力に詳細情報が含まれている可能性があります。」 示されています

コンソールには、使用法のヘルプが表示されます。

使用法:

lldb -h

lldb -v [[-][...]]

lldb -a-f[-c] [-s] [-o] [-S] [-O] [-k] [-K] [-Q] [-b] [-e] [-x] [-X] [-l] [-d] [[-][...]]

lldb -n-w [-s] [-o] [-S] [-O] [-k] [-K] [-Q] [-b] [-e] [-x] [-X] [-l] [-d]

lldb -p[-s] [-o] [-S] [-O] [-k] [-K] [-Q] [-b] [-e] [-x] [-X] [-l] [-d]

lldb -P

   --help

        Prints out the usage information for the LLDB debugger.



   -v

   --version

        Prints out the current version number of the LLDB debugger.



   -a <arch>

   --arch <arch>

        Tells the debugger to use the specified architecture when starting

        and running the program.  <architecture> must be one of the

        architectures for which the program was compiled.



   -f <filename>

   --file <filename>

        Tells the debugger to use the file <filename> as the program to be

        debugged.



   -c <filename>

   --core <filename>

        Tells the debugger to use the fullpath to <path> as the core file.



   -p <pid>

   --attach-pid <pid>

        Tells the debugger to attach to a process with the given pid.



   -n <process-name>

   --attach-name <process-name>

        Tells the debugger to attach to a process with the given name.



   -w

   --wait-for

        Tells the debugger to wait for a process with the given pid or name

        to launch before attaching.



   -s <filename>

   --source <filename>

        Tells the debugger to read in and execute the lldb commands in the

        given file, after any file provided on the command line has been

        loaded.



   -o

   --one-line

        Tells the debugger to execute this one-line lldb command after any

        file provided on the command line has been loaded.



   -S <filename>

   --source-before-file <filename>

        Tells the debugger to read in and execute the lldb commands in the

        given file, before any file provided on the command line has been

        loaded.



   -O

   --one-line-before-file

        Tells the debugger to execute this one-line lldb command before any

        file provided on the command line has been loaded.



   -k

   --one-line-on-crash

        When in batch mode, tells the debugger to execute this one-line

        lldb command if the target crashes.



   -K <filename>

   --source-on-crash <filename>

        When in batch mode, tells the debugger to source this file of lldb

        commands if the target crashes.



   -Q

   --source-quietly

        Tells the debugger to execute this one-line lldb command before any

        file provided on the command line has been loaded.



   -b

   --batch

        Tells the debugger to running the commands from -s, -S, -o & -O,

        and then quit.  However if any run command stopped due to a signal

        or crash, the debugger will return to the interactive prompt at the

        place of the crash.



   -e

   --editor

        Tells the debugger to open source files using the host's "external

        editor" mechanism.



   -x

   --no-lldbinit

        Do not automatically parse any '.lldbinit' files.



   -X

   --no-use-colors

        Do not use colors.



   -P

   --python-path

        Prints out the path to the lldb.py file for this version of lldb.



   -l <script-language>

   --script-language <script-language>

        Tells the debugger to use the specified scripting language for

        user-defined scripts, rather than the default.  Valid scripting

        languages that can be specified include Python, Perl, Ruby and Tcl.

        Currently only the Python extensions have been implemented.



   -d

   --debug

        Tells the debugger to print out extra information for debugging

        itself.

ノート:

   Multiple "-s" and "-o" options can be provided.  They will be processed from left to right in order,

   with the source files and commands interleaved.  The same is true of the "-S" and "-O" options.

   The before file and after file sets can intermixed freely, the command parser will sort them out.

   The order of the file specifiers ("-c", "-f", etc.) is not significant in this regard.


このスレッドにサブスクライブしているため、これを受け取っています。
このメールに直接返信するか、Gi tHubhttps://github.com/Microsoft/vscode-cpptools/issues/215で表示するか、読み取りをミュートします

それは超迅速な答えでした..ありがとう...

Windowsで同じ問題が発生しています...どうすればよいですか? 私もlldb-miを試しましたが、これは失敗します
開始: "D:/clang/LLVM/bin/lldb-mi.exe" --interpreter = mi
MI:エラー:ドライバー。 LLDBデバッガー。
MI:エラー:ドライバーマネージャー。 ドライバ 'マシンインターフェイスドライババージョン:1.0.0.9'(ID: 'MIDriver')の初期化に失敗しました。 運転者。 LLDBデバッガー。
「D:/clang/LLVM/bin/lldb-mi.exe」はコード-1000(0xFFFFFC18)で終了しました。
何をすべきか ?

このページは役に立ちましたか?
0 / 5 - 0 評価