Where can I find headers for LLDB.framework shipped with Xcode?

I know there is https://github.com/apple/llvm-project but how can I know which commit was used to compile lldb that got shipped with Xcode?

Answered by DTS Engineer in 711322022

The various frameworks lurking within Xcode are not considered API. If you want to use LLDB framework in your own code, grab the open source code and build it yourself.

how can I know which commit was used to compile lldb that got shipped with Xcode

If you do the above then you don’t need to know exactly which commit was used. However, you should be able to work this out anyway, by correlated lldb -v with the tags on that repo.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Accepted Answer

The various frameworks lurking within Xcode are not considered API. If you want to use LLDB framework in your own code, grab the open source code and build it yourself.

how can I know which commit was used to compile lldb that got shipped with Xcode

If you do the above then you don’t need to know exactly which commit was used. However, you should be able to work this out anyway, by correlated lldb -v with the tags on that repo.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Where can I find headers for LLDB.framework shipped with Xcode?
 
 
Q