Author: Julian Lettner
Date: 2025-01-06T15:26:18-08:00
New Revision: 01e980e792651391dfc3b399dbe300eddbbd0997
URL:
https://github.com/llvm/llvm-project/commit/01e980e792651391dfc3b399dbe300eddbbd0997
DIFF:
https://github.com/llvm/llvm-project/commit/01e980e792651391dfc3b399dbe300eddbbd0997.diff
https://github.com/yln closed https://github.com/llvm/llvm-project/pull/94794
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/JDevlieghere created
https://github.com/llvm/llvm-project/pull/121860
This is a draft PR with my prototype implementation of
https://discourse.llvm.org/t/rfc-lldb-statusline/83948
>From 24fea391893de79fc0455a81c1ce6cd77b6106fc Mon Sep 17 00:00:00 2001
From: Jonas Devlieghere
github-actions[bot] wrote:
Thank you for submitting a Pull Request (PR) to the LLVM Project!
This PR will be automatically labeled and the relevant teams will be notified.
If you wish to, you can add reviewers by using the "Reviewers" section on this
page.
If this is not working for you, it
https://github.com/SiamAbdullah created
https://github.com/llvm/llvm-project/pull/121879
### Issue:
Currently lldb `platform connect unix-connect://localhost:43045/` is failing
and showing "Failed to connect port" error message.

Changes
### Issue:
Currently lldb `platform connect unix-connect://localhost:43045/` is failing
and showing "Failed to connect port" error message.
 merged into
the LLVM Project!
Your changes will be combined with recent changes from other authors, then
tested by our [build bots](https://lab.llvm.org/buildbot/). If there is a
problem with a build
@@ -0,0 +1,154 @@
+//===-- HostInfoAIX.cpp -===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
DavidSpickett wrote:
These changes get things building I assume. So in that context I'm OK with
this. I have a feeling HostInfoAIX might end up essentially blank eventually,
but just because of the way we handle the HostInfo type, I think some file has
to exist for it to build. So it's OK to a
@@ -0,0 +1,154 @@
+//===-- HostInfoAIX.cpp -===//
+//
+// Part of the LLVM Project, under the Apache License v2.0 with LLVM
Exceptions.
+// See https://llvm.org/LICENSE.txt for license information.
+// SPDX-License-Identifier: Apach
DhruvSrivastavaX wrote:
Okay sure. Done. Please check! 🙂
https://github.com/llvm/llvm-project/pull/117906
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DhruvSrivastavaX edited
https://github.com/llvm/llvm-project/pull/117906
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dhruv Srivastava
Date: 2025-01-06T10:27:48Z
New Revision: 3a7a9c928671adc17046acc3a25e2d9bd5c80fcc
URL:
https://github.com/llvm/llvm-project/commit/3a7a9c928671adc17046acc3a25e2d9bd5c80fcc
DIFF:
https://github.com/llvm/llvm-project/commit/3a7a9c928671adc17046acc3a25e2d9bd5c80fcc.diff
L
https://github.com/DavidSpickett closed
https://github.com/llvm/llvm-project/pull/117906
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett approved this pull request.
https://github.com/llvm/llvm-project/pull/117906
___
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/120457
>From 4131b8c5af83a219efb2513a1ac90e8b9877d2ef Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 17 Dec 2024 17:45:34 -0800
Subject: [PATCH 1/8] [lldb-dap] Ensure the IO forwarding threads are managed
by t
DhruvSrivastavaX wrote:
Reference Discussion:
https://github.com/llvm/llvm-project/pull/120979#discussion_r1903934719
Please see if this is okay @DavidSpickett
https://github.com/llvm/llvm-project/pull/121747
___
lldb-commits mailing list
lldb-commi
@@ -16,6 +16,9 @@
#include
#include
#include
+#ifdef _AIX
+#include
DavidSpickett wrote:
Please do a PR to switch this to memset. This is more standard and saves us
from changing these includes.
https://github.com/llvm/llvm-project/pull/120979
__
@@ -715,7 +715,7 @@ ConnectionFileDescriptor::ConnectFD(llvm::StringRef s,
ConnectionStatus ConnectionFileDescriptor::ConnectFile(
llvm::StringRef s, socket_id_callback_type socket_id_callback,
Status *error_ptr) {
-#if LLDB_ENABLE_POSIX
+#if LLDB_ENABLE_POSIX && !defin
@@ -1226,7 +1226,7 @@ bool lldb_private::formatters::ObjCSELSummaryProvider(
time_t lldb_private::formatters::GetOSXEpoch() {
static time_t epoch = 0;
if (!epoch) {
-#ifndef _WIN32
+#if !defined(_WIN32) && !defined(_AIX)
DavidSpickett wrote:
Yes this is fi
https://github.com/DhruvSrivastavaX created
https://github.com/llvm/llvm-project/pull/121747
Replaced `bzero` with the standard `memset` so that it is common to all
platforms.
Review Request: @DavidSpickett
>From ced564a1ae7938cddd360684e08077af210654cb Mon Sep 17 00:00:00 2001
From: Dhruv-
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Dhruv Srivastava (DhruvSrivastavaX)
Changes
Replaced `bzero` with the standard `memset` so that it is common to all
platforms.
Review Request: @DavidSpickett
---
Full diff: https://github.com/llvm/llvm-project/pull/121747.diff
1 Files
https://github.com/DavidSpickett closed
https://github.com/llvm/llvm-project/pull/121747
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
DavidSpickett wrote:
Thanks!
https://github.com/llvm/llvm-project/pull/121747
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Dhruv Srivastava
Date: 2025-01-06T11:26:38Z
New Revision: 3bd494dfa6d520e25dc03047c92f28c121293a75
URL:
https://github.com/llvm/llvm-project/commit/3bd494dfa6d520e25dc03047c92f28c121293a75
DIFF:
https://github.com/llvm/llvm-project/commit/3bd494dfa6d520e25dc03047c92f28c121293a75.diff
L
https://github.com/DavidSpickett approved this pull request.
LGTM.
https://github.com/llvm/llvm-project/pull/121747
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/DavidSpickett edited
https://github.com/llvm/llvm-project/pull/121747
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
44 matches
Mail list logo