File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -401,7 +401,9 @@ tensorstore_cc_library(
401
401
tensorstore_cc_library (
402
402
name = "gdb_scripting" ,
403
403
hdrs = ["gdb_scripting.h" ],
404
- deps = ["@abseil-cpp//absl/base:core_headers" ],
404
+ deps = [
405
+ "@abseil-cpp//absl/base:core_headers" ,
406
+ ],
405
407
)
406
408
407
409
tensorstore_cc_library (
Original file line number Diff line number Diff line change 18
18
// GDB script registration not supported.
19
19
#define TENSORSTORE_GDB_AUTO_SCRIPT (name ) // noop
20
20
21
+ // LLDB script registration not supported.
22
+ #define TENSORSTORE_LLDB_AUTO_SCRIPT (name ) // noop
23
+
21
24
#endif // TENSORSTORE_INTERNAL_GDB_SCRIPTING_H_
Original file line number Diff line number Diff line change 32
32
#include " tensorstore/internal/gdb_scripting.h"
33
33
#include " tensorstore/internal/meta/attributes.h"
34
34
35
- TENSORSTORE_GDB_AUTO_SCRIPT ( " span_gdb .py" )
35
+ TENSORSTORE_LLDB_AUTO_SCRIPT ( " span_lldb .py" )
36
36
37
37
namespace tensorstore {
38
38
You can’t perform that action at this time.
0 commit comments