https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/122534
>From dc7aa946b248dfadb92a4f7564c4f3f052443648 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 2 Jan 2025 06:50:38 -0500
Subject: [PATCH] [lldb][OpenBSD] Fixes for process handling
---
lldb/source/Host/open
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124682
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/124682
>From fa2ef2fb98942b4d0f52c441f29fa48063b314b4 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Mon, 27 Jan 2025 22:16:53 -0500
Subject: [PATCH] [lldb] Remove PATH workaround for Android
---
lldb/source/Host/posi
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/124682
>From 9046fce2f1ff2e4ff540e47c2daa70d1ea6df34e Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Mon, 27 Jan 2025 22:16:53 -0500
Subject: [PATCH] [lldb] Remove PATH workaround for Android
---
lldb/source/Host/posi
@@ -29,6 +29,10 @@
#include
#include
+#ifdef __ANDROID__
+#include
brad0 wrote:
> what's the build failure you're seeing? this _should_ be included "for free"
> by all of the #includes above (via , which they should all drag
> in).
>
> of course, if you
brad0 wrote:
```arpa/inet.h``` and ```unistd.h``` are included under LLDB_ENABLE_POSIX just
above. Some of that looks questionable and I question if most of the remaining
headers are actually necessary.
https://github.com/llvm/llvm-project/pull/124453
__
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/124452
>From ff82716a85fdbc2feb8c2940205cf47b6e5c992c Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sun, 26 Jan 2025 02:28:39 -0500
Subject: [PATCH] [lldb] Android 9 has added the spawn.h header
---
lldb/source/Host/
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124453
None
>From 105b1dc748e2f4209dbda01e6b8b8ebc66af4b12 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sun, 26 Jan 2025 02:31:41 -0500
Subject: [PATCH] [lldb] Clean up Socket headers for Android
---
lldb/source/Ho
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124452
None
>From 2f773af320b8a32f0082a35392076d5a0d72e0b0 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sun, 26 Jan 2025 02:28:39 -0500
Subject: [PATCH] [lldb] Android 9 has added the spawn.h header
---
lldb/source
brad0 wrote:
>From the look of the rest of the codebase I should have included this header
>when utilizing __ANDROID_API__.
https://github.com/llvm/llvm-project/pull/124383
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.o
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124383
None
>From b0580b8b0f1f50e5fa10d2b872c79b4942faf093 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Fri, 24 Jan 2025 21:38:07 -0500
Subject: [PATCH] [lldb] Include api-level.h header for Android
---
lldb/source
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124257
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124257
This was for the wrapper function that was in
source/Host/android/LibcGlue.cpp. Android added
support 10+ years ago.
>From ed441c18d824e25a184f348a0dba7019cfb01b6f Mon Sep 17 00:00:00 2001
From: Brad Smith
Date:
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124187
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124182
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124176
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124187
dladdr() was introduced 15 years ago.
>From e70b8c1b451d40492b3b4b445ad503142d5b0838 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 23 Jan 2025 15:39:43 -0500
Subject: [PATCH] [lldb] Enable the use of dladd
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124182
None
>From 394b06124cc49dfca54071ef6f19ec55914c0750 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 23 Jan 2025 15:15:50 -0500
Subject: [PATCH] [lldb] Check Android API for existence of getgrgid_r()
introdu
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
> (getgrgid() has been around forever, though, so if anyone cared they could
> reduce the scope of this. but probably just `#if defined(__ANDROID__) &&
> (__ANDROID_API__ >= 24)` is clearer, and
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
> looking at the bionic headers, getgrgid_r() wasn't available until API 24...
Ok, thanks.
https://github.com/llvm/llvm-project/pull/124047
___
lldb-co
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/124176
>From 7c53e345b9264c9bd0ae16cddfb3c8066d43 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 23 Jan 2025 13:19:06 -0500
Subject: [PATCH] [lldb] Remove more workarounds for Android that have been
fixed upst
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
```
std::optional PosixUserIDResolver::DoGetGroupName(id_t gid) {
#ifndef __ANDROID__
char group_buffer[PATH_MAX];
size_t group_buffer_size = sizeof(group_buffer);
struct group group_info;
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
> > The ptrace header issue and the bits from ar.h header I'll submit. SUN_LEN
> > was only added 6 years ago so I figure keep it for a little bit longer.
>
> but it's just a macro in a header, s
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/124176
>From 6753c51940bd947d1aac1b333f954daa80346a1c Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 23 Jan 2025 13:19:06 -0500
Subject: [PATCH] [lldb] Remove more workarounds for Android that have been
fixed upst
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/124176
Issues that were fixed 10+ years ago with Bionic libc.
>From 4e10a6b316a1562d96808db3d4447539b51e3179 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 23 Jan 2025 13:19:06 -0500
Subject: [PATCH] [lldb] Remove
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
The ptrace header issue and the bits from ar.h header I'll submit. SUN_LEN was
only added 6 years ago so I figure keep it for a little bit longer.
https://github.com/llvm/llvm-project/pull/124047
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/124047
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -25,13 +25,10 @@
#include
#ifdef __ANDROID__
brad0 wrote:
Ok, I will circle back with another set of diffs to clean up some of these
other things too. Thanks.
https://github.com/llvm/llvm-project/pull/124047
_
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/123005
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 edited https://github.com/llvm/llvm-project/pull/123005
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/123005
>From 25e59d64f085df535c62676ae8ec00a778def8f9 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Tue, 14 Jan 2025 22:25:00 -0500
Subject: [PATCH] [lldb] Add OpenBSD signals
Signals 1-32 are matching the default UNI
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/122533
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/122533
>From 92c341b44c43a0d6f2442ec968ad56e494b8e785 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 9 Jan 2025 19:18:27 -0500
Subject: [PATCH] [lldb] Add amd64 ArchSpec
amd64 is used on OpenBSD.
---
lldb/include
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/122534
>From ed0cceef34f81d4a2544aa6aa8b51afa0fc92959 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 2 Jan 2025 06:50:38 -0500
Subject: [PATCH] [lldb][OpenBSD] Fixes for process handling
---
lldb/source/Host/open
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/122173
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 updated
https://github.com/llvm/llvm-project/pull/122173
>From d6663bdbf2a7cdf0c8289573cf9caefc15f7338f Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Wed, 8 Jan 2025 16:23:11 -0500
Subject: [PATCH] [lldb] Move GetEnvironment function into common code
---
lldb/source
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/122173
None
>From 43784f2bb5f4755f9cf1e63738ad4c566c7d3044 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Wed, 8 Jan 2025 16:23:11 -0500
Subject: [PATCH] [lldb] Move GetEnvironment function into common code
---
lldb/
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/122040
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/122041
None
>From 248e768f220e30a2f926ef93a856a1c5ee26dce3 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Tue, 7 Jan 2025 21:25:34 -0500
Subject: [PATCH] [lldb][OpenBSD][NFC] Replace tab with spaces
---
lldb/source/H
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/122040
None
>From 881a7767c1397951bf5275682a13037cd93dfcd5 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Tue, 7 Jan 2025 21:16:56 -0500
Subject: [PATCH] [lldb][OpenBSD] Make use of Environment class
---
lldb/source/
https://github.com/brad0 approved this pull request.
https://github.com/llvm/llvm-project/pull/121920
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
brad0 wrote:
@DavidSpickett The NetBSD statvfs header can be removed as the relevant code
was removed quite some time ago..
https://github.com/llvm/llvm-project/commit/bfe8bcbc43ccd45d4d32d0c5b6acc22d43ff330d
https://github.com/llvm/llvm-project/pull/121913
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/121051
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created
https://github.com/llvm/llvm-project/pull/121051
None
>From c67442014e38c14ba678fc1446e7f468ccf58a9c Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Mon, 23 Dec 2024 04:29:57 -0500
Subject: [PATCH] [lldb] A few more pieces towards OpenBSD support
---
lldb/cma
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74396
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Brad Smith
Date: 2023-12-04T23:21:45-05:00
New Revision: 98b4c1ee212901f6b6478a928ca74ed6edb311a9
URL:
https://github.com/llvm/llvm-project/commit/98b4c1ee212901f6b6478a928ca74ed6edb311a9
DIFF:
https://github.com/llvm/llvm-project/commit/98b4c1ee212901f6b6478a928ca74ed6edb311a9.diff
LO
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74396
Also eliminate an unused variable while here.
>From 2c5e7f0a514132a977a0b12484d47fa7e4dcdc8a Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Mon, 4 Dec 2023 20:05:52 -0500
Subject: [PATCH] [lldb] Sync OpenBSD GetOS
Author: Brad Smith
Date: 2023-12-04T19:51:31-05:00
New Revision: 961d943e396fa179988a160c2998f0bafc2a56c0
URL:
https://github.com/llvm/llvm-project/commit/961d943e396fa179988a160c2998f0bafc2a56c0
DIFF:
https://github.com/llvm/llvm-project/commit/961d943e396fa179988a160c2998f0bafc2a56c0.diff
LO
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74198
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -1,4 +1,7 @@
#include
+#ifdef __OpenBSD__
brad0 wrote:
Done.
https://github.com/llvm/llvm-project/pull/74198
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinf
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74198
>From 312bd79cfbe847a7553534714649ff2a4b7979b5 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 10:20:48 -0500
Subject: [PATCH] [lldb] Additional pieces towards OpenBSD support
---
lldb/source/Core/
@@ -1,4 +1,7 @@
#include
+#ifdef __OpenBSD__
brad0 wrote:
Sure.
https://github.com/llvm/llvm-project/pull/74198
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinf
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74191
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74190
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74198
>From 3ae1151d6bea76543b79f1d32dfbbe571ed97fdc Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 10:20:48 -0500
Subject: [PATCH] [lldb] Additional pieces towards OpenBSD support
---
lldb/source/Core/
@@ -1245,9 +1245,10 @@ bool FormatEntity::Format(const Entry &entry, Stream &s,
llvm::Triple::OSType ostype = arch.IsValid()
? arch.GetTriple().getOS()
: llvm::Triple::Unknow
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74198
>From f79dcfc95ffba5ba10ce5fa7ff4ffcd8dc3f0254 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 10:20:48 -0500
Subject: [PATCH] [lldb] Additional pieces towards OpenBSD support
---
lldb/source/Core/
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74198
>From 864c2a515f8894df80d9d543a771f8fc5ba74345 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 10:20:48 -0500
Subject: [PATCH] [lldb] Additional pieces towards OpenBSD support
---
lldb/source/Core/
https://github.com/brad0 unassigned
https://github.com/llvm/llvm-project/pull/74198
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74198
None
>From 3281024daed54f60cc091f1a801831a81b47ec7e Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 10:20:48 -0500
Subject: [PATCH] [lldb] Additional pieces towards OpenBSD support
---
lldb/source
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74191
>From 855c6cba4a77aae71ee48a1bc141767b56a9c6c6 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 05:52:53 -0500
Subject: [PATCH] [lldb] Fix building on NetBSD 8.x
PT_STOP was introduced with NetBSD 9.
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74191
>From fc902910d55c5c38eb8b3ac3519b3285fab58b66 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 05:52:53 -0500
Subject: [PATCH] [lldb] Fix building on NetBSD 8.x
PT_STOP was introduced with NetBSD 9.
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74191
>From 7b61f0c5a4b78301eda6404273e4c2c70ef2570a Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 05:52:53 -0500
Subject: [PATCH] [lldb] Fix building on NetBSD 8.x
---
.../Process/NetBSD/NativeProcess
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74191
PT_STOP was introduced with NetBSD 9.0.
>From a52f402403beeb9aefbc28e80622b9d3bfb30d63 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 05:52:53 -0500
Subject: [PATCH] [lldb] Fix building on NetBSD 8
https://github.com/brad0 updated https://github.com/llvm/llvm-project/pull/74190
>From 33e60078b75b9e4e7b433219e9e158bdfd1ef046 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Sat, 2 Dec 2023 03:52:38 -0500
Subject: [PATCH] [lldb] Fix build on NetBSD
lldb/source/Host/netbsd/HostNetBSD.cpp:112:3
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74190
```
lldb/source/Host/netbsd/HostNetBSD.cpp:112:32: error: reinterpret_cast from
'const uint8_t *' (aka 'const unsigned char *') to 'char *' casts away
qualifiers
{reinterpret_cast(buff
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74017
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74019
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74036
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/73981
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74036
None
>From 260de5f42f3216321349ff316ff800c5fa2c60f9 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 30 Nov 2023 23:07:45 -0500
Subject: [PATCH] [lldb/test] Add OpenBSD to _get_platform_os
---
lldb/packages/P
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74019
FreeBSD 10.x and 11.x support has been dropped leaving 12.x as the minimum
version. This FreeBSD check can be simplified.
https://github.com/llvm/llvm-project/commit/812dad536ed50abe94d6e2b2519f351791c24c59
>From
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/74012
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
brad0 wrote:
> If [this man page](https://man.openbsd.org/pipe2) is to be believed, this
> seems alright to do.
Yes, that is correct. 8+ years ago / 18 releases ago at 5.7.
https://github.com/llvm/llvm-project/pull/74012
___
lldb-commits mailing list
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74017
None
>From adf0027c83805290dd259b8f431c91a19c15955a Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 30 Nov 2023 20:14:22 -0500
Subject: [PATCH] [lldb] Make use of LD_LIBRARY_PATH on OpenBSD
---
lldb/packages
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/74012
None
>From e3d6d0b6040516ee761c1b635093fd13244e9d2a Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 30 Nov 2023 19:17:53 -0500
Subject: [PATCH] [lldb] pipe2(2) is also supported by OpenBSD
---
lldb/source/Ho
brad0 wrote:
> From the look of it, it looks like the minimum version of GCC that is
> currently supported is 7.1. (See:
> `llvm/cmake/modules/CheckCompilerVersion.cmake`)
It was 7.1, it is now 7.4.
https://reviews.llvm.org/D156286
https://github.com/llvm/llvm-project/pull/73981
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/73981
The minimum GCC version was bumped up from 4.8 to 5.1 and then even newer
awhile ago so garbage collect the pre 4.8 workaround.
https://reviews.llvm.org/D66188
>From a79e4d06f16e2460c7521874c13370022bbb5952 Mon Sep
brad0 wrote:
It would be nice to get this in so Flang is buildable.
https://github.com/llvm/llvm-project/pull/73254
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
brad0 wrote:
I see you re-based 2 times. Does this look Ok as is? It would be good to add
the AIX Driver bits once this goes in.
https://github.com/llvm/llvm-project/pull/73254
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.ll
https://github.com/brad0 closed https://github.com/llvm/llvm-project/pull/71129
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
brad0 wrote:
Ping.
https://github.com/llvm/llvm-project/pull/71129
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
brad0 wrote:
Ping.
https://github.com/llvm/llvm-project/pull/71129
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
https://github.com/brad0 created https://github.com/llvm/llvm-project/pull/71129
None
>From 7b39da3783ad02ccf59283b8a180ec5c04cb5fd6 Mon Sep 17 00:00:00 2001
From: Brad Smith
Date: Thu, 2 Nov 2023 21:15:15 -0400
Subject: [PATCH] [lldb][test] Implement getting thread ID on OpenBSD
---
lldb/pac
Author: Brad Smith
Date: 2021-05-05T00:56:44-04:00
New Revision: 3a62d4fde88544125ce9ceff990db108ee91148a
URL:
https://github.com/llvm/llvm-project/commit/3a62d4fde88544125ce9ceff990db108ee91148a
DIFF:
https://github.com/llvm/llvm-project/commit/3a62d4fde88544125ce9ceff990db108ee91148a.diff
LO
Author: brad
Date: Thu Oct 4 13:34:58 2018
New Revision: 343810
URL: http://llvm.org/viewvc/llvm-project?rev=343810&view=rev
Log:
The Python 3 part of the script was missed when adding OpenBSD support.
Modified:
lldb/trunk/scripts/utilsOsType.py
Modified: lldb/trunk/scripts/utilsOsType.py
U
Author: brad
Date: Thu Jan 17 17:36:58 2019
New Revision: 351504
URL: http://llvm.org/viewvc/llvm-project?rev=351504&view=rev
Log:
Use llvm::VersionTuple instead of manual version marshalling
Modified:
lldb/trunk/include/lldb/Host/openbsd/HostInfoOpenBSD.h
lldb/trunk/source/Host/openbsd/H
87 matches
Mail list logo