Skip to content

Commit c4360a6

Browse files
committed
Add a compiler/interpreter of LLDB data formatter bytecode to examples
1 parent 2e0506f commit c4360a6

File tree

5 files changed

+813
-0
lines changed

5 files changed

+813
-0
lines changed
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
all: test
2+
3+
.PHONY: test
4+
test:
5+
python3 compiler.py
6+
mkdir -p _test
7+
clang++ -std=c++17 test/MyOptional.cpp -g -o _test/MyOptional
8+
lldb _test/MyOptional -o "command script import test/formatter.py" -o "b -p here" -o "r" -o "v x" -o "v y" -o q

0 commit comments

Comments
 (0)