-
-
Notifications
You must be signed in to change notification settings - Fork 14.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The patched adapter now produces a dynamic library instead of a static archive fixes #234908,#160874 (cherry picked from commit a31fa54)
- Loading branch information
1 parent
88f86c5
commit 8134b54
Showing
4 changed files
with
40 additions
and
25 deletions.
There are no files selected for viewing
22 changes: 22 additions & 0 deletions
22
...ications/editors/vscode/extensions/vadimcn.vscode-lldb/adapter-output-shared_object.patch
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,22 @@ | ||
From 4f64ad191ec79b9f40843f88e3ac5910720636da Mon Sep 17 00:00:00 2001 | ||
From: Changsheng Wu <Congee@users.noreply.github.com> | ||
Date: Fri, 9 Jun 2023 15:41:53 -0400 | ||
Subject: [PATCH] Update Cargo.toml | ||
|
||
--- | ||
adapter/Cargo.toml | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/adapter/Cargo.toml b/adapter/Cargo.toml | ||
index bc86723..f5f26ce 100644 | ||
--- a/adapter/Cargo.toml | ||
+++ b/adapter/Cargo.toml | ||
@@ -39,7 +39,7 @@ winapi = { version = "0.3.8", features = ["std", "wincon", "namedpipeapi"] } | ||
winreg = "0.6.2" | ||
|
||
[lib] | ||
-crate-type = ["staticlib"] | ||
+crate-type = ["dylib", "rlib"] | ||
|
||
[[bin]] | ||
name = "codelldb" |
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