nico wrote:
This broke minidumps in lldb: #119598
https://github.com/llvm/llvm-project/pull/109477
___
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
nico wrote:
Looks like this breaks building on windows:
http://45.33.8.238/win/93597/step_3.txt
Please take a look and revert for now if it takes a while to fix.
https://github.com/llvm/llvm-project/pull/107163
___
lldb-commits mailing list
lldb-comm
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const
lldb::SBEvent &event) const {
return event.m_opaque_ptr;
}
-Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream(
+lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream(
const lldb::SBStream
Author: Nico Weber
Date: 2024-06-28T13:25:11+02:00
New Revision: a2e3af5d581547d3ea53e5383d6f7f1cab45120a
URL:
https://github.com/llvm/llvm-project/commit/a2e3af5d581547d3ea53e5383d6f7f1cab45120a
DIFF:
https://github.com/llvm/llvm-project/commit/a2e3af5d581547d3ea53e5383d6f7f1cab45120a.diff
LO
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const
lldb::SBEvent &event) const {
return event.m_opaque_ptr;
}
-Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream(
+lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream(
const lldb::SBStream
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const
lldb::SBEvent &event) const {
return event.m_opaque_ptr;
}
-Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream(
+lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream(
const lldb::SBStream
@@ -106,10 +106,13 @@ ScriptInterpreter::GetOpaqueTypeFromSBEvent(const
lldb::SBEvent &event) const {
return event.m_opaque_ptr;
}
-Stream *ScriptInterpreter::GetOpaqueTypeFromSBStream(
+lldb::StreamSP ScriptInterpreter::GetOpaqueTypeFromSBStream(
const lldb::SBStream
@@ -44,6 +44,10 @@ lldb_build_intel_pt = '@LLDB_BUILD_INTEL_PT@'
if lldb_build_intel_pt == '1':
config.enabled_plugins.append('intel-pt')
+llvm_enable_curl = '@LLVM_ENABLE_CURL@'
nico wrote:
Is this correct? Won't this expand to 'NO' which is truthy when
nico wrote:
Thanks for the explanation! What kind of tool reads this file?
It's still weird to use tblgen to process non-td files imho. We have a bunch of
places that run python scripts as part of the build
(clang/utils/bundle_resources.py,
clang/lib/Tooling/DumpTool/generate_cxx_src_locs.py,
nico wrote:
I left another comment on the commit that doesn't show up here
(https://github.com/llvm/llvm-project/commit/975eca0e6a3459e59e96b0df33ea0cfbd157c597).
If you do want to keep the generated file: All other tablegen invocations use
".inc" for tablegen output. Maybe this could match th
nico wrote:
Why does this use tablegen to parse a .def file?
Can't you get the same behavior without tablegen, using normal xmacro
techniques, something like
```c++
enum SBSourceLanguageName : uint16_t {
#define HANDLE_DW_LNAME(ID, NAME, DESC, LOWER_BOUND) \
eLanguageName ## NAME = ID,
#i
@@ -52,5 +52,6 @@ executable("lldb-dap") {
"RunInTerminal.cpp",
"SourceBreakpoint.cpp",
"lldb-dap.cpp",
+"Watchpoint.cpp"
nico wrote:
Please don't update gn build files if you don't use the gn build. There's a bot
that is able to do it most of
nico wrote:
This doesn't build on Linux: http://45.33.8.238/linux/130329/step_4.txt
Please take a look and revert for now if it takes a while to fix.
(Looks like you added a definition on non apple; maybe the declaration is just
still missing)
https://github.com/llvm/llvm-project/pull/80890
_
nico wrote:
This might've broken clangd tests: http://45.33.8.238/linux/129484/step_9.txt
Does that look related? If so, please take a look and revert for now if it
takes a while to fix.
https://github.com/llvm/llvm-project/pull/68485
___
lldb-commit
https://github.com/nico created https://github.com/llvm/llvm-project/pull/76255
None
>From 7bd8eade99bbf2408a35462f1f4f643d9649efb3 Mon Sep 17 00:00:00 2001
From: Nico Weber
Date: Fri, 22 Dec 2023 12:18:34 -0500
Subject: [PATCH] [lldb/win] Fix -Wmissing-field-initializers warnings after
54981b
Author: Nico Weber
Date: 2023-12-22T12:11:07-05:00
New Revision: 04c473bea3e0f135432698fcaafab52e1fe1b5ec
URL:
https://github.com/llvm/llvm-project/commit/04c473bea3e0f135432698fcaafab52e1fe1b5ec
DIFF:
https://github.com/llvm/llvm-project/commit/04c473bea3e0f135432698fcaafab52e1fe1b5ec.diff
LO
nico wrote:
This breaks targeting macOS versions older than 10.12 for unnecessary reason:
```
../../llvm/lib/Debuginfod/Debuginfod.cpp:54:6: error: 'shared_mutex' is
unavailable: introduced in macOS 10.12
std::shared_mutex UrlsMutex;
^
```
You should be able to use llvm::sys::RWMutex so p
Author: Nico Weber
Date: 2023-11-28T08:53:05+09:00
New Revision: a6c62bf1a4717accc852463b664cd1012237d334
URL:
https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334
DIFF:
https://github.com/llvm/llvm-project/commit/a6c62bf1a4717accc852463b664cd1012237d334.diff
LO
Author: Nico Weber
Date: 2023-10-26T07:37:42-07:00
New Revision: 53096f910ca874cf446417d0bf551c5d63e917b2
URL:
https://github.com/llvm/llvm-project/commit/53096f910ca874cf446417d0bf551c5d63e917b2
DIFF:
https://github.com/llvm/llvm-project/commit/53096f910ca874cf446417d0bf551c5d63e917b2.diff
LO
Author: Nico Weber
Date: 2022-10-26T13:34:56-04:00
New Revision: 0af7280a5ee005737fbf1b709909d9600e2b5c75
URL:
https://github.com/llvm/llvm-project/commit/0af7280a5ee005737fbf1b709909d9600e2b5c75
DIFF:
https://github.com/llvm/llvm-project/commit/0af7280a5ee005737fbf1b709909d9600e2b5c75.diff
LO
Author: Nico Weber
Date: 2022-09-30T10:19:08-04:00
New Revision: a314a36aaa1d3bb27a2102820ff636f7cd0940eb
URL:
https://github.com/llvm/llvm-project/commit/a314a36aaa1d3bb27a2102820ff636f7cd0940eb
DIFF:
https://github.com/llvm/llvm-project/commit/a314a36aaa1d3bb27a2102820ff636f7cd0940eb.diff
LO
Author: Nico Weber
Date: 2022-09-28T20:12:32-04:00
New Revision: faaff2cdceac49d2e7c719fe994c5eee343ec818
URL:
https://github.com/llvm/llvm-project/commit/faaff2cdceac49d2e7c719fe994c5eee343ec818
DIFF:
https://github.com/llvm/llvm-project/commit/faaff2cdceac49d2e7c719fe994c5eee343ec818.diff
LO
Author: Nico Weber
Date: 2022-09-28T20:07:14-04:00
New Revision: dcb94010eb8f0110c593a41e90b01365b45795e6
URL:
https://github.com/llvm/llvm-project/commit/dcb94010eb8f0110c593a41e90b01365b45795e6
DIFF:
https://github.com/llvm/llvm-project/commit/dcb94010eb8f0110c593a41e90b01365b45795e6.diff
LO
Author: Nico Weber
Date: 2022-07-23T12:35:48-04:00
New Revision: 1b4b12a34022b13b35755d9c941f7f13753e5e96
URL:
https://github.com/llvm/llvm-project/commit/1b4b12a34022b13b35755d9c941f7f13753e5e96
DIFF:
https://github.com/llvm/llvm-project/commit/1b4b12a34022b13b35755d9c941f7f13753e5e96.diff
LO
Author: Nico Weber
Date: 2022-07-12T11:08:44-04:00
New Revision: 7f83dae7f584b21f0f76b466579bbb7b99b06dc5
URL:
https://github.com/llvm/llvm-project/commit/7f83dae7f584b21f0f76b466579bbb7b99b06dc5
DIFF:
https://github.com/llvm/llvm-project/commit/7f83dae7f584b21f0f76b466579bbb7b99b06dc5.diff
LO
Author: Kaining Zhong
Date: 2022-07-05T10:52:26+02:00
New Revision: dc46ae6df5f769b80b56a30f6d77f962fa90833d
URL:
https://github.com/llvm/llvm-project/commit/dc46ae6df5f769b80b56a30f6d77f962fa90833d
DIFF:
https://github.com/llvm/llvm-project/commit/dc46ae6df5f769b80b56a30f6d77f962fa90833d.diff
Author: Nico Weber
Date: 2022-04-07T10:07:07-04:00
New Revision: e22a60b1c898a760a73417fa225c2fbe0609a69f
URL:
https://github.com/llvm/llvm-project/commit/e22a60b1c898a760a73417fa225c2fbe0609a69f
DIFF:
https://github.com/llvm/llvm-project/commit/e22a60b1c898a760a73417fa225c2fbe0609a69f.diff
LO
Author: Nico Weber
Date: 2022-01-01T13:35:54-05:00
New Revision: 4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1
URL:
https://github.com/llvm/llvm-project/commit/4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1
DIFF:
https://github.com/llvm/llvm-project/commit/4f2eeb6a657abf82d13e95c7ab0d7d02fab98ed1.diff
LO
Author: Nico Weber
Date: 2021-10-27T09:43:42-04:00
New Revision: 99f5f0a2b72bfaf0bfb527466fdd50748583559f
URL:
https://github.com/llvm/llvm-project/commit/99f5f0a2b72bfaf0bfb527466fdd50748583559f
DIFF:
https://github.com/llvm/llvm-project/commit/99f5f0a2b72bfaf0bfb527466fdd50748583559f.diff
LO
Author: Nico Weber
Date: 2021-09-21T13:02:52-04:00
New Revision: 908c1154421287c6ffa0ef06ef5225a8fd0b06a7
URL:
https://github.com/llvm/llvm-project/commit/908c1154421287c6ffa0ef06ef5225a8fd0b06a7
DIFF:
https://github.com/llvm/llvm-project/commit/908c1154421287c6ffa0ef06ef5225a8fd0b06a7.diff
LO
Author: Nico Weber
Date: 2021-09-16T07:40:54-04:00
New Revision: 99ece01a0f571f0df129a55bf679f7fbd0b01b75
URL:
https://github.com/llvm/llvm-project/commit/99ece01a0f571f0df129a55bf679f7fbd0b01b75
DIFF:
https://github.com/llvm/llvm-project/commit/99ece01a0f571f0df129a55bf679f7fbd0b01b75.diff
LO
Author: Nico Weber
Date: 2021-09-07T13:19:00-04:00
New Revision: ea04bf302cf8f32bef62208e123d9d0cb99fa55c
URL:
https://github.com/llvm/llvm-project/commit/ea04bf302cf8f32bef62208e123d9d0cb99fa55c
DIFF:
https://github.com/llvm/llvm-project/commit/ea04bf302cf8f32bef62208e123d9d0cb99fa55c.diff
LO
Author: Nico Weber
Date: 2021-09-02T11:32:28-04:00
New Revision: 7f544f7658357045bde67c2f897a088558310f16
URL:
https://github.com/llvm/llvm-project/commit/7f544f7658357045bde67c2f897a088558310f16
DIFF:
https://github.com/llvm/llvm-project/commit/7f544f7658357045bde67c2f897a088558310f16.diff
LO
Author: Nico Weber
Date: 2021-08-05T22:18:37+02:00
New Revision: e71fdc1acf054271031200f87a6bfc276d8a1ebd
URL:
https://github.com/llvm/llvm-project/commit/e71fdc1acf054271031200f87a6bfc276d8a1ebd
DIFF:
https://github.com/llvm/llvm-project/commit/e71fdc1acf054271031200f87a6bfc276d8a1ebd.diff
LO
Author: Nico Weber
Date: 2021-08-05T22:17:00+02:00
New Revision: 11565320fd55117f04b9cc812e28a30962283c3e
URL:
https://github.com/llvm/llvm-project/commit/11565320fd55117f04b9cc812e28a30962283c3e
DIFF:
https://github.com/llvm/llvm-project/commit/11565320fd55117f04b9cc812e28a30962283c3e.diff
LO
Author: Nico Weber
Date: 2021-08-03T22:14:56+02:00
New Revision: bf3383501fefc6cfe0d8f313a2814f7fa34d4492
URL:
https://github.com/llvm/llvm-project/commit/bf3383501fefc6cfe0d8f313a2814f7fa34d4492
DIFF:
https://github.com/llvm/llvm-project/commit/bf3383501fefc6cfe0d8f313a2814f7fa34d4492.diff
LO
Author: Nico Weber
Date: 2021-08-03T22:14:12+02:00
New Revision: 4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5
URL:
https://github.com/llvm/llvm-project/commit/4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5
DIFF:
https://github.com/llvm/llvm-project/commit/4367cbab4cf2cbf8f81a24bdcc2dc0612b932aa5.diff
LO
Author: Nico Weber
Date: 2021-08-02T20:11:35+02:00
New Revision: 82dc463bb356200fd46b90d6d5a439c3c9b31c92
URL:
https://github.com/llvm/llvm-project/commit/82dc463bb356200fd46b90d6d5a439c3c9b31c92
DIFF:
https://github.com/llvm/llvm-project/commit/82dc463bb356200fd46b90d6d5a439c3c9b31c92.diff
LO
Author: Nico Weber
Date: 2020-12-14T22:05:08-05:00
New Revision: 7799ef7121aa7d59f4bd95cdf70035de724ead6f
URL:
https://github.com/llvm/llvm-project/commit/7799ef7121aa7d59f4bd95cdf70035de724ead6f
DIFF:
https://github.com/llvm/llvm-project/commit/7799ef7121aa7d59f4bd95cdf70035de724ead6f.diff
LO
Author: Nico Weber
Date: 2020-05-20T16:17:31-04:00
New Revision: bc1c3655bfd67a0b4ccece465729c39d769e9707
URL:
https://github.com/llvm/llvm-project/commit/bc1c3655bfd67a0b4ccece465729c39d769e9707
DIFF:
https://github.com/llvm/llvm-project/commit/bc1c3655bfd67a0b4ccece465729c39d769e9707.diff
LO
Author: Nico Weber
Date: 2020-03-13T15:37:44-04:00
New Revision: f82b32a51e22cc56d20f695772797127d3f9d85a
URL:
https://github.com/llvm/llvm-project/commit/f82b32a51e22cc56d20f695772797127d3f9d85a
DIFF:
https://github.com/llvm/llvm-project/commit/f82b32a51e22cc56d20f695772797127d3f9d85a.diff
LO
Author: nico
Date: Wed Aug 7 12:29:04 2019
New Revision: 368199
URL: http://llvm.org/viewvc/llvm-project?rev=368199&view=rev
Log:
Add support for deterministically linked binaries on macOS to lldb.
When ld64 links a binary deterministically using the flag ZERO_AR_DATE,
it sets a timestamp of 0 f
Author: nico
Date: Wed Jul 10 12:18:38 2019
New Revision: 365688
URL: http://llvm.org/viewvc/llvm-project?rev=365688&view=rev
Log:
Add Python 3.6 and 3.7 to the version list
Python 3.6 and 3.7 have been released.
Differential Revision: https://reviews.llvm.org/D6
Patch from Christian Biesin
On Fri, Mar 15, 2019 at 10:04 AM Pavel Labath wrote:
> On 14/03/2019 21:45, Nico Weber wrote:
> > I tried LLVM_ENABLE_PROJECTS=all today, and it fails with
> >
> > CMake Error: The following variables are used in this project, but they
> > are set to NOTFOUND.
> > Please set them or make sure the
I tried LLVM_ENABLE_PROJECTS=all today, and it fails with
CMake Error: The following variables are used in this project, but they are
set to NOTFOUND.
Please set them or make sure they are set and tested correctly in the CMake
files:
libedit_INCLUDE_DIRS
used as include directory in directory
/
Author: nico
Date: Wed Nov 21 04:50:13 2018
New Revision: 347391
URL: http://llvm.org/viewvc/llvm-project?rev=347391&view=rev
Log:
Revert 347365, its prerequisite 347364 got reverted.
Modified:
lldb/trunk/source/Symbol/ClangASTContext.cpp
Modified: lldb/trunk/source/Symbol/ClangASTContext.cp
Author: nico
Date: Tue Apr 10 06:33:45 2018
New Revision: 329697
URL: http://llvm.org/viewvc/llvm-project?rev=329697&view=rev
Log:
s/LLVM_ON_WIN32/_WIN32/, lldb
LLVM_ON_WIN32 is set exactly with MSVC and MinGW (but no
47 matches
Mail list logo