GitXplorerGitXplorer
a

swift-lldb

public
674 stars
197 forks
10 issues

Commits

List of commits on branch stable.
Verified
d74be846ef3e62de946df343e8c234bde93a8912

Merge pull request #2073 from apple/hyp-patch-1

sshahmishal committed 5 years ago
Verified
e099e932e6428be1c3a7a79d72d253dce9c18c50

Update readme to point to the monnorepo

hhyp committed 5 years ago
Unverified
d9a834724538e2f96172602c9fef3bbae8f0c6c1

[lldb] Don't emit artificial constructor declarations as global functions

TTeemperor committed 5 years ago
Verified
4e7bd7460062fe9c4fff8209b04afb047f1cf183

Merge pull request #2069 from JDevlieghere/cherrypick/r375068

sswift-ci committed 5 years ago
Unverified
ee50d1c3beffa30ba66e7353c80a590ed8ab9e6a

[CMake] Make it possible to set the RPATH in add_lldb_exectable.

JJDevlieghere committed 5 years ago
Verified
e12ba79663f11b607853cafabf25f47963eebcc1

Merge pull request #2066 from fredriss/some-testsuite-improvements

sswift-ci committed 5 years ago

README

The README file for this repository.

Disclaimer

The swift-lldb repository is frozen and is preserved for historical purposes only. Active development is now happening in the following repository: https://github.com/apple/llvm-project

Swift Debugger and REPL

Welcome to the Swift Debugger and REPL!

Swift is a new, high performance systems programming language. It has a clean and modern syntax, offers seamless access to existing C and Objective-C code and frameworks, and is memory safe (by default).

This repository covers the Swift Debugger and REPL support, built on top of the LLDB Debugger.

Building LLDB for Swift

To build LLDB for Swift, check out the swift repository and follow the instruction listed there. You can build lldb passing the --lldb flag to it. Example invocation:

mkdir myswift
cd myswift
git clone https://github.com/apple/swift.git swift
./swift/utils/update-checkout
./swift/utils/build-script -r --lldb

Contribution Subtleties

The swift-lldb project enhances the core LLDB project developed under the LLVM Project. Swift support in the debugger is added via the existing source-level plugin infrastructure, isolated to files that are newly introduced in the lldb-swift repository.

Files that come from the core LLDB project can be readily identified by their use of the LLVM comment header. As no local changes should be made to any of these files, follow the standard guidance for upstream changes.