https://github.com/Jlalond updated
https://github.com/llvm/llvm-project/pull/140150
>From 94d78d5ea7866fe896381319c875d6b9c3d34c90 Mon Sep 17 00:00:00 2001
From: Jacob Lalonde
Date: Thu, 15 May 2025 13:57:11 -0700
Subject: [PATCH 01/11] Update ThreadElfCore
---
lldb/include/lldb/Target/UnixSi
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder
`amdgpu-offload-rhel-9-cmake-build-only` running on `rocm-docker-rhel-9` while
building `clang-tools-extra,clang,lldb` at step 4 "annotate".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/205/builds/10
Jlalond wrote:
@labath So I moved the behavior to platform, I agree it's cleaner this way. One
area that I couldn't decide is if the ValueObj should be constructed in
Platform or not. Because Thread calls out to platform I just decided to call
the existing method, but I wanted your feedback on
ashgti wrote:
I have a change to remove the size check on the binary and yea, these tests are
broken on macOS for sure.
If this is submitted, then I'll rebase my changes on this, otherwise I also
have a patch that could fix this.
https://github.com/llvm/llvm-project/pull/140908
__
@@ -1102,3 +1103,28 @@ def is_feature_enabled():
return "%s is not supported on this system." % feature
return skipTestIfFn(is_feature_enabled)
+
+
+def skipIfBinaryToLarge(path: Optional[str], maxSize: int):
+"""Skip the test if a binary is to large.
+
ashgti wrote:
This patch has grown a bit due to discovering a number of issues in some of the
tests.
I think I'll try splitting it up into smaller patches instead.
https://github.com/llvm/llvm-project/pull/140777
___
lldb-commits mailing list
lldb-co
https://github.com/chelcassanova updated
https://github.com/llvm/llvm-project/pull/138028
>From 0b83514cde0b6fa2adc8c31a082a03770248ae4e Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova
Date: Wed, 30 Apr 2025 13:37:15 -0700
Subject: [PATCH] [lldb][RPC] Upstream Python scripts
As part of upstre
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder
`amdgpu-offload-ubuntu-22-cmake-build-only` running on `rocm-docker-ubu-22`
while building `clang-tools-extra,clang,lldb` at step 4 "annotate".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/203/builds
@@ -0,0 +1,17 @@
+// Run the convert script on it, then run the framework include fix on it. The
framework version fix script
+// expects that all lldb references have been renamed to lldb-rpc in order for
it to modify the includes
+// to go into the framework.
@@ -0,0 +1,53 @@
+#!/usr/bin/env python3
+"""
+Usage: LLDB_MAJOR_VERSION
LLDB_MINOR_VERSION LLDB_PATCH_VERSION
+
+This script uncomments and populates the versioning information in
lldb-defines.h
+"""
+
+import argparse
+import os
+import re
+
+LLDB_VERSION_REGEX = re.compile(
@@ -0,0 +1,16 @@
+//===-- lldb-defines.h --*- C++
-*-===//
+//
+// 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: Apa
https://github.com/da-viper approved this pull request.
https://github.com/llvm/llvm-project/pull/140908
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
@@ -0,0 +1,20 @@
+// Copy lldb-defines.h from source.
+# RUN: mkdir -p %t/input
+# RUN: mkdir -p %t/output
+# RUN: cp %p/../../../../../include/lldb/lldb-defines.h %t/input
chelcassanova wrote:
Nice, I didn't know that about llvm-lit. I'll change everything to us
https://github.com/ashgti updated
https://github.com/llvm/llvm-project/pull/140777
>From e50ea7d279adcb181f68a7156b5fc12d1047f402 Mon Sep 17 00:00:00 2001
From: John Harrison
Date: Tue, 20 May 2025 11:09:35 -0700
Subject: [PATCH 1/3] [lldb-dap] Test gardening, enabling tests and improving
doc
https://github.com/ashgti created
https://github.com/llvm/llvm-project/pull/141159
In lldb-dap, we have existing tests that are known to be unstable when lldb and
lldb-dap are built in the Debug configuration.
This decorator lets us skip those tests in CI jobs that are to slow with those
conf
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `premerge-monolithic-linux`
running on `premerge-linux-1` while building `clang-tools-extra,clang,lldb` at
step 6 "build-unified-tree".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/153/builds/32614
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: John Harrison (ashgti)
Changes
In lldb-dap, we have existing tests that are known to be unstable when lldb and
lldb-dap are built in the Debug configuration.
This decorator lets us skip those tests in CI jobs that are to slow with those
c
https://github.com/kazutakahirata created
https://github.com/llvm/llvm-project/pull/141183
None
>From ab8b6e252e6d62f6dcac140127dae8700634d117 Mon Sep 17 00:00:00 2001
From: Kazu Hirata
Date: Wed, 21 May 2025 20:04:38 -0700
Subject: [PATCH] [lldb] Remove redundant control flow statements (NFC)
llvmbot wrote:
@llvm/pr-subscribers-lldb
Author: Kazu Hirata (kazutakahirata)
Changes
---
Full diff: https://github.com/llvm/llvm-project/pull/141183.diff
6 Files Affected:
- (modified) lldb/include/lldb/Interpreter/ScriptInterpreter.h (+2-4)
- (modified) lldb/include/lldb/Target/Pro
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `lldb-arm-ubuntu` running
on `linaro-lldb-arm-ubuntu` while building `lldb` at step 6 "test".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/18/builds/16431
Here is the relevant piece of the build log
https://github.com/kazutakahirata closed
https://github.com/llvm/llvm-project/pull/141183
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Kazu Hirata
Date: 2025-05-22T22:36:26-07:00
New Revision: 6979ab26555a8640a0470410c2c040fd68bf68ce
URL:
https://github.com/llvm/llvm-project/commit/6979ab26555a8640a0470410c2c040fd68bf68ce
DIFF:
https://github.com/llvm/llvm-project/commit/6979ab26555a8640a0470410c2c040fd68bf68ce.diff
L
llvm-ci wrote:
LLVM Buildbot has detected a new failure on builder `ppc64le-flang-rhel-clang`
running on `ppc64le-flang-rhel-test` while building
`clang-tools-extra,clang,lldb` at step 5 "build-unified-tree".
Full details are available at:
https://lab.llvm.org/buildbot/#/builders/157/builds/2
SuibianP wrote:
I don't have commit access and please kindly help commit on my behalf when you
see fit.
https://github.com/llvm/llvm-project/pull/140908
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/l
https://github.com/chelcassanova updated
https://github.com/llvm/llvm-project/pull/138028
>From 31161db1c9b0bd040513eb8ff4504c29d1e6c04f Mon Sep 17 00:00:00 2001
From: Chelsea Cassanova
Date: Wed, 30 Apr 2025 13:37:15 -0700
Subject: [PATCH] [lldb][RPC] Upstream Python scripts
As part of upstre
chelcassanova wrote:
> There is functionality in lldb/scripts/framework-header-fix.sh that does the
> same thing. Can you remove this functionality from that script too?
Yeah, I can remove that. The ultimate goal I want here is:
1. Fixing up the versioning takes place in its own script (the one
https://github.com/jasonmolenda approved this pull request.
This looks good to me.
https://github.com/llvm/llvm-project/pull/138416
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Hu Jialun
Date: 2025-05-22T20:20:35-07:00
New Revision: 695d725edfb71e3e048229b96a5b3e9c2adad048
URL:
https://github.com/llvm/llvm-project/commit/695d725edfb71e3e048229b96a5b3e9c2adad048
DIFF:
https://github.com/llvm/llvm-project/commit/695d725edfb71e3e048229b96a5b3e9c2adad048.diff
LOG
https://github.com/JDevlieghere closed
https://github.com/llvm/llvm-project/pull/140908
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
github-actions[bot] wrote:
@SuibianP Congratulations on having your first Pull Request (PR) 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
https://github.com/JDevlieghere approved this pull request.
https://github.com/llvm/llvm-project/pull/141183
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
Author: Ely Ronnen
Date: 2025-05-23T08:26:46+02:00
New Revision: 044929d075cff7883a020526ec8b795b30f9f086
URL:
https://github.com/llvm/llvm-project/commit/044929d075cff7883a020526ec8b795b30f9f086
DIFF:
https://github.com/llvm/llvm-project/commit/044929d075cff7883a020526ec8b795b30f9f086.diff
LO
https://github.com/eronnen closed
https://github.com/llvm/llvm-project/pull/138416
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
101 - 133 of 133 matches
Mail list logo