huangweiwei
huangweiwei

Reputation: 311

How to update the lldb in macosx

My mac is 10.13.4 Beta and the version of the lldb is "lldb-902.0.79.7 switf-4.1".I want to update the lldb but I didn't found any solution.

Upvotes: 2

Views: 3299

Answers (1)

tomalbrc
tomalbrc

Reputation: 188

The LLDB binary in /usr/bin/lldb searches for the LLDB executable inside the Xcode.app bundle using xcode-select internally.

To change which Xcode Application bundle (therefore version) is being used, run sudo xcode-select -s /path/to/an/Xcode.app.

For example:

sudo xcode-select -s /Applications/Xcode9.4.app

EDIT:

If any stumbles across this question, have a look at this answer

Upvotes: 1

Related Questions