10

This is possible with Print multiple variables with one command in GDB, but how to do it with LLDB?

2 Answers 2

9

If all you want is to print variables, then

(lldb) frame variable var1 var2 var3 var4

will do it for you

But if you're trying to actually evaluate expressions instead of just printing local variables, then that will not work.

Sign up to request clarification or add additional context in comments.

1 Comment

Even better with fr v -o var1 var2 var3 var4
7

To get the same result , you can log messages with Xcode Breakpoints.

writing:

@var1@ @var2@ @var3@ @var4@

more details:

var1 is @var1@ , var2 is @var2@, var3 is @var3@ , var4 is @var4@

showing a pic:

one

more intuitive, you could use multiple debug command

just like

two

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.