forked from ChromeDevTools/devtools-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[swift] Add Swift support to LLDB for WebAssembly
- Loading branch information
1 parent
d588930
commit aea3c02
Showing
10 changed files
with
49 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
set(cmark-gfm_FOUND TRUE) | ||
set(cmark-gfm_INCLUDE_DIRS "${CMAKE_CURRENT_LIST_DIR}/include") | ||
set(cmark-gfm_LIBRARIES) | ||
|
||
add_library(libcmark-gfm INTERFACE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
file://config/owner/INFRA_OWNERS |
13 changes: 13 additions & 0 deletions
13
extensions/cxx_debugging/third_party/swift/README.chromium
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Name: The Swift Programming Language | ||
Short Name: swift | ||
URL: https://github.com/swiftlang/swift | ||
Version: N/A | ||
Date: TODO | ||
Revision: TODO | ||
License: Apache 2.0 with LLVM Exceptions | ||
License File: src/LICENSE.TXT | ||
Shipped: no | ||
Security Critical: no | ||
Description: The Swift project produces a compiler, standard library, and other tools for developing software in the Swift programming language. In order to achieve ABI stability and debuggability, programs produced by the Swift compiler contain type layout information in its own metadata sections instead of the standard DWARF format. This metadata is used by both the Swift runtime and LLDB to inspect objects at runtime. | ||
|
||
In the DevTools debugging extension, a part of the Swift project is used to read such metadata through LLDB's Swift language plugin. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters