https://github.com/slydiman edited
https://github.com/llvm/llvm-project/pull/112485
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/slydiman edited
https://github.com/llvm/llvm-project/pull/112485
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/112485
>From 4736ff60f79352f2f9f703eced07c3555fef8a63 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Wed, 16 Oct 2024 10:37:37 +0400
Subject: [PATCH 1/2] [lldb][test] Fix the test TestArrayFromStdModule.py
This
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/112485
>From 4736ff60f79352f2f9f703eced07c3555fef8a63 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Wed, 16 Oct 2024 10:37:37 +0400
Subject: [PATCH 1/2] [lldb][test] Fix the test TestArrayFromStdModule.py
This
labath wrote:
I doubt those linker flags are going to work on windows. It might be more
"portable" to ensure the symbols are present by using them from inside the
program.
https://github.com/llvm/llvm-project/pull/98701
___
lldb-commits mailing list
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
3860e29e0e743c5f411c3023396d1ea07c28da7d...4736ff60f79352f2f9f703eced07c3555fef8a63
lldb
labath wrote:
> NativeProcessManager::Attach
Also worth noting that the test is *attaching*. That's probably because on
darwin we are launching the process in suspended mode and then asking the
debugserver to attach to it. That's might not be what the packet forwarder
expects (or is it?)
htt
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Dmitry Vasilyev (slydiman)
Changes
This patch fixes the error
https://lab.llvm.org/staging/#/builders/195/builds/4464
```
File
"llvm-project/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py",
line 55, in
https://github.com/slydiman created
https://github.com/llvm/llvm-project/pull/112485
This patch fixes the error
https://lab.llvm.org/staging/#/builders/195/builds/4464
```
File
"llvm-project/lldb/test/API/commands/expression/import-std-module/array/TestArrayFromStdModule.py",
line 55, in test
https://github.com/kazutakahirata closed
https://github.com/llvm/llvm-project/pull/112471
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Kazu Hirata
Date: 2024-10-15T23:11:30-07:00
New Revision: 282ab2f1895450707c9f8fc6a46634620165d1c9
URL:
https://github.com/llvm/llvm-project/commit/282ab2f1895450707c9f8fc6a46634620165d1c9
DIFF:
https://github.com/llvm/llvm-project/commit/282ab2f1895450707c9f8fc6a46634620165d1c9.diff
L
@@ -16,12 +16,36 @@ std::string Render(std::vector details) {
} // namespace
TEST_F(ErrorDisplayTest, RenderStatus) {
- DiagnosticDetail::SourceLocation inline_loc;
- inline_loc.in_user_input = true;
{
+DiagnosticDetail::SourceLocation inline_loc;
+inline_loc.in_u
@@ -16,12 +16,36 @@ std::string Render(std::vector details) {
} // namespace
TEST_F(ErrorDisplayTest, RenderStatus) {
- DiagnosticDetail::SourceLocation inline_loc;
- inline_loc.in_user_input = true;
{
+DiagnosticDetail::SourceLocation inline_loc;
+inline_loc.in_u
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Adrian Prantl (adrian-prantl)
Changes
depends on https://github.com/llvm/llvm-project/pull/112451
---
Full diff: https://github.com/llvm/llvm-project/pull/112466.diff
2 Files Affected:
- (modified) lldb/source/Utility/DiagnosticsRenderin
https://github.com/adrian-prantl edited
https://github.com/llvm/llvm-project/pull/112466
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/adrian-prantl created
https://github.com/llvm/llvm-project/pull/112466
None
>From d400a1358678162df02c7cada2a66b837d3ff005 Mon Sep 17 00:00:00 2001
From: Adrian Prantl
Date: Tue, 15 Oct 2024 16:20:33 -0700
Subject: [PATCH 1/2] [lldb] Fix a crash when two diagnostics are on t
https://github.com/adrian-prantl updated
https://github.com/llvm/llvm-project/pull/112451
>From d400a1358678162df02c7cada2a66b837d3ff005 Mon Sep 17 00:00:00 2001
From: Adrian Prantl
Date: Tue, 15 Oct 2024 16:20:33 -0700
Subject: [PATCH] [lldb] Fix a crash when two diagnostics are on the same
c
Author: Muhammad Omair Javaid
Date: 2024-10-16T06:08:13+05:00
New Revision: 69f7758ddba662b63667507f2c472c008909dd7e
URL:
https://github.com/llvm/llvm-project/commit/69f7758ddba662b63667507f2c472c008909dd7e
DIFF:
https://github.com/llvm/llvm-project/commit/69f7758ddba662b63667507f2c472c008909dd
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 61f5407be7fed86428d46e0ea0a6d418a8e25bf7 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH 1/5] [lldb-dap] Creating an API for sending custom dap events
fro
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 61f5407be7fed86428d46e0ea0a6d418a8e25bf7 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH 1/4] [lldb-dap] Creating an API for sending custom dap events
fro
@@ -962,6 +962,67 @@ bool ReplModeRequestHandler::DoExecute(lldb::SBDebugger
debugger,
return true;
}
+// Sends a DAP event with an optional body.
+//
+// See
+//
https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent
+bool SendEv
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 61f5407be7fed86428d46e0ea0a6d418a8e25bf7 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH 1/3] [lldb-dap] Creating an API for sending custom dap events
fro
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 224f62de9e34d537b1fd282b47b773b04bea34f1
ea5bf236b32bb852d4461d37b732f6e7f0f3007b --e
github-actions[bot] wrote:
:warning: Python code formatter, darker found issues in your code. :warning:
You can test this locally with the following command:
``bash
darker --check --diff -r
224f62de9e34d537b1fd282b47b773b04bea34f1...ea5bf236b32bb852d4461d37b732f6e7f0f3007b
lldb/
@@ -290,6 +290,30 @@ The initial repl-mode can be configured with the cli flag
`--repl-mode=`
and may also be adjusted at runtime using the lldb command
`lldb-dap repl-mode `.
+ `lldb-dap custom-event`
ashgti wrote:
Renamed the event to `lldb-dap send-ev
@@ -962,6 +962,44 @@ bool ReplModeRequestHandler::DoExecute(lldb::SBDebugger
debugger,
return true;
}
+// Sends a custom DAP event with an optional body.
+//
+// See
+//
https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent
+bool
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 61f5407be7fed86428d46e0ea0a6d418a8e25bf7 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH 1/2] [lldb-dap] Creating an API for sending custom dap events
fro
Author: Muhammad Omair Javaid
Date: 2024-10-16T05:33:27+05:00
New Revision: eca3206d29e7ce97dd6336deaa3da96be37f8277
URL:
https://github.com/llvm/llvm-project/commit/eca3206d29e7ce97dd6336deaa3da96be37f8277
DIFF:
https://github.com/llvm/llvm-project/commit/eca3206d29e7ce97dd6336deaa3da96be37f82
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/112420
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere updated
https://github.com/llvm/llvm-project/pull/111911
>From 55eab57c695d4be99305d2b6cee0c4f44261a473 Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
Date: Thu, 10 Oct 2024 14:39:44 -0700
Subject: [PATCH 1/4] [lldb] Log errors to the system log if they would
@@ -98,10 +94,31 @@ void RenderDiagnosticDetails(Stream &stream,
continue;
}
-auto &loc = *detail.source_location;
remaining_details.push_back(detail);
+ }
+
+ // Sort the diagnostics.
+ auto sort = [](auto &ds) {
+std::sort(ds.begin(), ds.end(), [](a
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Adrian Prantl (adrian-prantl)
Changes
…reverse order
The second inner loop (only) was missing the check for offset > column. Also
this patch sorts the diagnostics before printing them.
---
Full diff: https://github.com/llvm/llvm-project/p
https://github.com/adrian-prantl created
https://github.com/llvm/llvm-project/pull/112451
…reverse order
The second inner loop (only) was missing the check for offset > column. Also
this patch sorts the diagnostics before printing them.
>From 934214ae1daf3fd70ee1cf332b269d636fbbc193 Mon Sep 1
Author: Jonas Devlieghere
Date: 2024-10-15T16:13:42-07:00
New Revision: cc13d4fb4a208363ed1dab29829cd200a3e39c52
URL:
https://github.com/llvm/llvm-project/commit/cc13d4fb4a208363ed1dab29829cd200a3e39c52
DIFF:
https://github.com/llvm/llvm-project/commit/cc13d4fb4a208363ed1dab29829cd200a3e39c52.d
@@ -1896,6 +1896,8 @@ void request_initialize(const llvm::json::Object
&request) {
cmd.AddCommand(
"repl-mode", new ReplModeRequestHandler(),
"Get or set the repl behavior of lldb-dap evaluation requests.");
+ cmd.AddCommand("custom-event", new CustomDAPEventReq
https://github.com/vogelsgesang edited
https://github.com/llvm/llvm-project/pull/112384
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -290,6 +290,30 @@ The initial repl-mode can be configured with the cli flag
`--repl-mode=`
and may also be adjusted at runtime using the lldb command
`lldb-dap repl-mode `.
+ `lldb-dap custom-event`
vogelsgesang wrote:
afaict, this command could also
@@ -962,6 +962,44 @@ bool ReplModeRequestHandler::DoExecute(lldb::SBDebugger
debugger,
return true;
}
+// Sends a custom DAP event with an optional body.
+//
+// See
+//
https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent
+bool
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Currently all of LLDB is being compiled with -Wno-deprecated-declarations.
That's not desirable, especially as part of the LLVM monorepo, as we miss
deprecation warnings from LLVM and clang.
Accord
https://github.com/JDevlieghere ready_for_review
https://github.com/llvm/llvm-project/pull/112276
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
JDevlieghere wrote:
There was an attempt to remove this (https://reviews.llvm.org/D106035) but this
hit some issues on Arch and with column counting which is out of scope for what
I'm trying to achieve.
https://github.com/llvm/llvm-project/pull/112446
_
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Jonas Devlieghere (JDevlieghere)
Changes
Disable -Wdeprecated-declarations for codecvt_utf8 in Editline. This is in
preparation for #112276 which narrows the scope of
-Wno-deprecated-declarations for building LLDB.
---
Full diff: https://
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/112446
Disable -Wdeprecated-declarations for codecvt_utf8 in Editline. This is in
preparation for #112276 which narrows the scope of -Wno-deprecated-declarations
for building LLDB.
>From 4c53565414c95ddd49050363
https://github.com/walter-erquinigo edited
https://github.com/llvm/llvm-project/pull/112384
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -1896,6 +1896,8 @@ void request_initialize(const llvm::json::Object
&request) {
cmd.AddCommand(
"repl-mode", new ReplModeRequestHandler(),
"Get or set the repl behavior of lldb-dap evaluation requests.");
+ cmd.AddCommand("custom-event", new CustomDAPEventReq
https://github.com/walter-erquinigo approved this pull request.
looks pretty good. Just a minor nit
https://github.com/llvm/llvm-project/pull/112384
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listin
jasonmolenda wrote:
Alex had a PR a month ago https://github.com/llvm/llvm-project/pull/106791 that
got reverted from the same test failing on x86, I tried to repo the failure a
few times on an intel mac and never succeeded. I'll try again with your patch
when I have that set up. If this tes
slydiman wrote:
> Or is @slydiman implying this PR isn't needed anymore?
This patch should fix the following tests:
array/TestArrayFromStdModule.py
vector-of-vectors/TestVectorOfVectorsFromStdModule.py
vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py
See the buildbot https://lab
jasonmolenda wrote:
Very nice! And now we'll see what all the CI bots think of this change. :)
https://github.com/llvm/llvm-project/pull/110646
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/l
https://github.com/jasonmolenda closed
https://github.com/llvm/llvm-project/pull/110646
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dmitrii Galimzianov
Date: 2024-10-15T13:25:01-07:00
New Revision: 5f2cf99e146ce99d4e148038d9bdd012331b4821
URL:
https://github.com/llvm/llvm-project/commit/5f2cf99e146ce99d4e148038d9bdd012331b4821
DIFF:
https://github.com/llvm/llvm-project/commit/5f2cf99e146ce99d4e148038d9bdd012331b4821
https://github.com/brooksdavis updated
https://github.com/llvm/llvm-project/pull/112420
>From 1732a1841a24e411cb261d7ae3bff16af618268c Mon Sep 17 00:00:00 2001
From: Brooks Davis
Date: Tue, 15 Oct 2024 20:03:54 +0100
Subject: [PATCH 1/3] [llbd] Finish Turn lldb_private::Status into a value
typ
https://github.com/slydiman closed
https://github.com/llvm/llvm-project/pull/112357
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dmitry Vasilyev
Date: 2024-10-16T00:08:58+04:00
New Revision: de7f7ea884525cca24e8797319452bd8bc150752
URL:
https://github.com/llvm/llvm-project/commit/de7f7ea884525cca24e8797319452bd8bc150752
DIFF:
https://github.com/llvm/llvm-project/commit/de7f7ea884525cca24e8797319452bd8bc150752.dif
slydiman wrote:
> Can we change the Darwin case to `USE_LIBCPP` though? The less reliance on
> the system stdlib the better i think.
I cannot test it on Darwin, so I would leave that to the Darwin experts.
> Also lets check that the PR CI actually does run the test (aka doesn't
> trigger the
https://github.com/brooksdavis updated
https://github.com/llvm/llvm-project/pull/112420
>From 1732a1841a24e411cb261d7ae3bff16af618268c Mon Sep 17 00:00:00 2001
From: Brooks Davis
Date: Tue, 15 Oct 2024 20:03:54 +0100
Subject: [PATCH 1/2] [llbd] Finish Turn lldb_private::Status into a value
typ
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 61f5407be7fed86428d46e0ea0a6d418a8e25bf7 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH] [lldb-dap] Creating an API for sending custom dap events from
ll
Author: John Harrison
Date: 2024-10-15T12:19:21-07:00
New Revision: 224f62de9e34d537b1fd282b47b773b04bea34f1
URL:
https://github.com/llvm/llvm-project/commit/224f62de9e34d537b1fd282b47b773b04bea34f1
DIFF:
https://github.com/llvm/llvm-project/commit/224f62de9e34d537b1fd282b47b773b04bea34f1.diff
https://github.com/ashgti closed
https://github.com/llvm/llvm-project/pull/112396
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From be42193c499f28f8b078f1b443ad09d94e7ba2c5 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH] [lldb-dap] Creating an API for sending custom dap events from
ll
github-actions[bot] wrote:
:warning: C/C++ code formatter, clang-format found issues in your code.
:warning:
You can test this locally with the following command:
``bash
git-clang-format --diff 83368191a21340a6c3a8f88b01ecae6433640957
1732a1841a24e411cb261d7ae3bff16af618268c --e
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Brooks Davis (brooksdavis)
Changes
Fix a few bare Status() invocations that were missed in the conversion. This is
sufficent to build lldb on FreeBSD/aaarch64.
Fixes: 0642cd768b80
---
Full diff: https://github.com/llvm/llvm-project/pull/1
https://github.com/brooksdavis created
https://github.com/llvm/llvm-project/pull/112420
Fix a few bare Status() invocations that were missed in the conversion. This is
sufficent to build lldb on FreeBSD/aaarch64.
Fixes: 0642cd768b80
>From 1732a1841a24e411cb261d7ae3bff16af618268c Mon Sep 17 00
Michael137 wrote:
Can you add in the PR description why the `--whole-archive and
--allow-multiple-definition` fixes the issue? And paste the log of the CI test
that's failing?
https://github.com/llvm/llvm-project/pull/98701
___
lldb-commits mailing l
https://github.com/Michael137 approved this pull request.
Doing both seems fine, thanks!
Can we change the Darwin case to `USE_LIBCPP` though? The less reliance on the
system stdlib the better i think.
Also lets check that the PR CI actually does run the test (aka doesn't trigger
the skip add
https://github.com/walter-erquinigo approved this pull request.
cool
https://github.com/llvm/llvm-project/pull/112396
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DmT021 closed
https://github.com/llvm/llvm-project/pull/110439
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
DmT021 wrote:
I'm closing this in favor https://github.com/llvm/llvm-project/pull/110646
https://github.com/llvm/llvm-project/pull/110439
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-com
@@ -642,26 +652,86 @@ ModuleSP DynamicLoaderDarwin::GetDYLDModule() {
void DynamicLoaderDarwin::ClearDYLDModule() { m_dyld_module_wp.reset(); }
+template
+static std::vector parallel_map(
+llvm::ThreadPoolInterface &threadPool, InputIterator first,
+InputIterator las
@@ -71,7 +70,7 @@ class LLDB_API SBExpressionOptions {
/// Set the language using a pair of language code and version as
/// defined by the DWARF 6 specification.
/// WARNING: These codes may change until DWARF 6 is finalized.
- void SetLanguage(lldb::SBSourceLanguageNam
@@ -71,7 +70,7 @@ class LLDB_API SBExpressionOptions {
/// Set the language using a pair of language code and version as
/// defined by the DWARF 6 specification.
/// WARNING: These codes may change until DWARF 6 is finalized.
- void SetLanguage(lldb::SBSourceLanguageNam
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/112357
>From 29326dedbc1c786e699fb30655d4105c867d1b84 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Tue, 15 Oct 2024 17:20:13 +0400
Subject: [PATCH 1/2] [lldb][test] Fix TestStdCXXDisassembly test
The path #98
@@ -71,7 +70,7 @@ class LLDB_API SBExpressionOptions {
/// Set the language using a pair of language code and version as
/// defined by the DWARF 6 specification.
/// WARNING: These codes may change until DWARF 6 is finalized.
- void SetLanguage(lldb::SBSourceLanguageNam
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
Adjusting the name from `lldb-dap startDebugging` to `lldb-dap start-debugging`
to improve consistency with other names for commands in lldb/lldb-dap.
---
Full diff: https://github.com/llvm/llvm-project/pull/
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/112396
Adjusting the name from `lldb-dap startDebugging` to `lldb-dap start-debugging`
to improve consistency with other names for commands in lldb/lldb-dap.
>From 2aa7abfbdeaed07a5c46068ea2533c2d20613c5f Mon Sep 17 00
medismailben wrote:
> > I suggest @medismailben (or an Apple colleague he nominates), runs this
> > test locally and does their best to narrow down the problem.
> > @rocallahan does `rr` work on Mac? Because one cross check here would be to
> > connect lldb to actual `rr` and see if that works.
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/112384
>From 5ec5d350f78d284634ffbc7800d7f34a5017707a Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 15 Oct 2024 09:13:49 -0700
Subject: [PATCH] [lldb-dap] Creating an API for sending custom dap events from
ll
slydiman wrote:
It seems #106885 fixed the issue for
`deque-dbg-info-content/TestDbgInfoContentDequeFromStdModule.py`
and
`list-dbg-info-content/TestDbgInfoContentListFromStdModule.py`,
but not for `vector-dbg-info-content/TestDbgInfoContentVectorFromStdModule.py`.
The following 3 tests don'
labath wrote:
Thank you for your understanding.
Before trying to split up the other large files (a fairly large undertaking),
I'd still recommend doing the initial thing of dropping the file in a PR (which
should be relatively fast) and getting some feedback. ObjectFile plugins are
one of the
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
Custom DAP events can be detected using
https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent.
This API allows an lldb python script to send custom events to the
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/112384
Custom DAP events can be detected using
https://code.visualstudio.com/api/references/vscode-api#debug.onDidReceiveDebugSessionCustomEvent.
This API allows an lldb python script to send custom events to the DAP
https://github.com/labath approved this pull request.
https://github.com/llvm/llvm-project/pull/112360
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/112307
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
JDevlieghere wrote:
Thanks @jmorse!
https://github.com/llvm/llvm-project/pull/112307
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Jonas Devlieghere
Date: 2024-10-15T08:25:28-07:00
New Revision: 74eb079e06ae052feda28e63f4f63303efc01236
URL:
https://github.com/llvm/llvm-project/commit/74eb079e06ae052feda28e63f4f63303efc01236
DIFF:
https://github.com/llvm/llvm-project/commit/74eb079e06ae052feda28e63f4f63303efc01236.d
medismailben wrote:
> I suggest @medismailben (or an Apple colleague he nominates), runs this test
> locally and does their best to narrow down the problem.
>
> @rocallahan does `rr` work on Mac? Because one cross check here would be to
> connect lldb to actual `rr` and see if that works. If i
https://github.com/slydiman edited
https://github.com/llvm/llvm-project/pull/112357
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
slydiman wrote:
@Michael137
Thanks. I have updated the patch with both solutions to be sure.
https://github.com/llvm/llvm-project/pull/112357
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lld
https://github.com/slydiman updated
https://github.com/llvm/llvm-project/pull/112357
>From 29326dedbc1c786e699fb30655d4105c867d1b84 Mon Sep 17 00:00:00 2001
From: Dmitry Vasilyev
Date: Tue, 15 Oct 2024 17:20:13 +0400
Subject: [PATCH 1/2] [lldb][test] Fix TestStdCXXDisassembly test
The path #98
Author: Kazu Hirata
Date: 2024-10-15T07:37:00-07:00
New Revision: a7b7af7ad5c45fba87d9b423752601865cdfbee2
URL:
https://github.com/llvm/llvm-project/commit/a7b7af7ad5c45fba87d9b423752601865cdfbee2
DIFF:
https://github.com/llvm/llvm-project/commit/a7b7af7ad5c45fba87d9b423752601865cdfbee2.diff
L
https://github.com/kazutakahirata closed
https://github.com/llvm/llvm-project/pull/112315
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/oontvoo closed
https://github.com/llvm/llvm-project/pull/111891
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Vy Nguyen
Date: 2024-10-15T10:14:48-04:00
New Revision: 4d788814061a1003f577e293f2cd74b30223e050
URL:
https://github.com/llvm/llvm-project/commit/4d788814061a1003f577e293f2cd74b30223e050
DIFF:
https://github.com/llvm/llvm-project/commit/4d788814061a1003f577e293f2cd74b30223e050.diff
LOG
Michael137 wrote:
> > maybe we could just skip the test if we can't locate the module?
>
> Can you suggest how to do that (locate the module)?
Instead of,
```
self.expect(
lib_stdcxx, "Libraray StdC++ is located", exe=False, substr
weliveindetail wrote:
Bots are fine and `functionalities/completion` kept passing:
* https://lab.llvm.org/buildbot/#/builders/141/builds/3195
* https://lab.llvm.org/buildbot/#/builders/162/builds/8408
* https://green.lab.llvm.org/job/llvm.org/view/LLDB/job/lldb-cmake/6753
It affects quite a numb
slydiman wrote:
> maybe we could just skip the test if we can't locate the module?
Can you suggest how to do that (locate the module)?
> Won't setting USE_LIBSTDCPP be an issue on Darwin?
I can't test on Darwin. Maybe the following?
```
ifneq ($(OS),Darwin)
USE_LIBSTDCPP := 1
else
USE_S
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Stefan Gränitz (weliveindetail)
Changes
Following up from https://github.com/llvm/llvm-project/pull/112342, we roll out
the fix and quote nested `make` invocations in all API tests.
---
Full diff: https://github.com/llvm/llvm-project/pull/
https://github.com/weliveindetail created
https://github.com/llvm/llvm-project/pull/112360
Following up from https://github.com/llvm/llvm-project/pull/112342, we roll out
the fix and quote nested `make` invocations in all API tests.
From 80688469060b8956a36797d2b75863545df75801 Mon Sep 17 00:0
https://github.com/weliveindetail edited
https://github.com/llvm/llvm-project/pull/112342
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Michael137 wrote:
So the problem is that because we statically link we fail to find a
`libstdc++.so`? Won't setting `USE_LIBSTDCPP` be an issue on Darwin?
Generally, why is this test trying to do disassembly on every STL symbol? Can't
really tell if this was actually STL specific from the git
1 - 100 of 144 matches
Mail list logo