[Lldb-commits] [lldb] SBDebugger: define callback_token_t for win32 (PR #92870)

2024-05-21 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: +1, this fixes my build errors for Windows targets as well: https://github.com/mstorsjo/llvm-mingw/actions/runs/9167001362/job/25206642195 https://github.com/llvm/llvm-project/pull/92870 ___ lldb-commits mailing list lldb-commits@lists

[Lldb-commits] [lldb] [lldb][test] Disable MD5 test for old versions of Visual Studio (PR #94325)

2024-06-04 Thread Martin Storsjö via lldb-commits
@@ -593,6 +593,10 @@ TEST_F(GDBRemoteCommunicationClientTest, WriteMemoryTags) { "E03", false); } +// Prior to this verison, constructing a std::future for a type without a +// default constructor is not possible. +// https://developercommunity.visualstudio.c

[Lldb-commits] [lldb] [clang] [clang][DebugInfo] Revert "emit definitions for constant-initialized static data-members" (PR #74580)

2023-12-06 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: Could we please land this now? https://github.com/llvm/llvm-project/pull/74580 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [clang] [llvm] [clang-tools-extra] [libc] [compiler-rt] [libcxx] [openmp] [mlir] [lldb] [flang] [libcxxabi] [lld] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms

2023-12-15 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: This commit broken building compiler-rt builtins for Windows on aarch64; building now hits these errors: ``` llvm-project/compiler-rt/lib/builtins/cpu_model.c:1192:2: error: No support for checking for lse atomics on this platfrom yet. 1192 | #error No support for checking for

[Lldb-commits] [lld] [llvm] [libcxxabi] [compiler-rt] [libc] [openmp] [mlir] [clang-tools-extra] [clang] [lldb] [libcxx] [flang] [builtins][arm64] Build __init_cpu_features_resolver on Apple platforms

2023-12-15 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: > > BTW, when compiling the file I also get a bunch of warnings in this style: > > @mstorsjo maybe `unsigned long` is 32 bits on that platform... what's the > target triple? Ah, indeed - yes, Windows has 32 bit `long`s. The triples are `aarch64-windows-gnu` or `aarch64-windows

[Lldb-commits] [lldb] [LLDB] Define _BSD_SOURCE globally, to get optreset available in mingw's getopt.h (PR #76137)

2023-12-21 Thread Martin Storsjö via lldb-commits
https://github.com/mstorsjo created https://github.com/llvm/llvm-project/pull/76137 We previously were defining _BSD_SOURCE right before including getopt.h. However, on mingw-w64, getopt.h is also transitively included by unistd.h, and unistd.h can be transitively included by many headers (rec

[Lldb-commits] [lldb] [LLDB] Define _BSD_SOURCE globally, to get optreset available in mingw's getopt.h (PR #76137)

2023-12-21 Thread Martin Storsjö via lldb-commits
@@ -44,6 +44,10 @@ endif() if (WIN32) add_definitions(-D_ENABLE_EXTENDED_ALIGNED_STORAGE) + if (NOT MSVC) mstorsjo wrote: This was never defined for clang-cl/MSVC builds before. Note that the existing define I'm removing is within this context: ``` #if !

[Lldb-commits] [lldb] [LLDB] Define _BSD_SOURCE globally, to get optreset available in mingw's getopt.h (PR #76137)

2023-12-21 Thread Martin Storsjö via lldb-commits
https://github.com/mstorsjo closed https://github.com/llvm/llvm-project/pull/76137 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 3f03877 - [LLDB] Don't use the local python to set a default for LLDB_PYTHON_RELATIVE_PATH when cross compiling.

2021-05-11 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-05-11T14:04:41+03:00 New Revision: 3f03877f5a838973d0d22f6b45c112228319f4da URL: https://github.com/llvm/llvm-project/commit/3f03877f5a838973d0d22f6b45c112228319f4da DIFF: https://github.com/llvm/llvm-project/commit/3f03877f5a838973d0d22f6b45c112228319f4da.diff

[Lldb-commits] [lldb] e50f9c4 - [lldb] Rename StringRef _lower() method calls to _insensitive()

2021-06-24 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-06-25T00:22:01+03:00 New Revision: e50f9c419a84d1e58c38aa660c445395ad8056e6 URL: https://github.com/llvm/llvm-project/commit/e50f9c419a84d1e58c38aa660c445395ad8056e6 DIFF: https://github.com/llvm/llvm-project/commit/e50f9c419a84d1e58c38aa660c445395ad8056e6.diff

[Lldb-commits] [lldb] 11e74e5 - [lldb] Remove a stray semicolon, fixing GCC warnings. NFC.

2021-02-01 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-02-01T13:45:07+02:00 New Revision: 11e74e512d64ae2a2531156b6f0dde211b1ae19d URL: https://github.com/llvm/llvm-project/commit/11e74e512d64ae2a2531156b6f0dde211b1ae19d DIFF: https://github.com/llvm/llvm-project/commit/11e74e512d64ae2a2531156b6f0dde211b1ae19d.diff

Re: [Lldb-commits] [lldb] 0bca9a7 - Fix lldb-vscode builds on Windows targeting POSIX

2021-02-04 Thread Martin Storsjö via lldb-commits
On Thu, 28 Jan 2021, Walter Erquinigo via lldb-commits wrote: Author: Walter Erquinigo Date: 2021-01-28T09:36:13-08:00 New Revision: 0bca9a7ce2eeaa9f1d732ffbc17769560a2b236e URL: https://github.com/llvm/llvm-project/commit/0bca9a7ce2eeaa9f1d732ffbc17769560a2b236e DIFF: https://github.com/llv

Re: [Lldb-commits] [PATCH] D96840: [LLDB] [docs] Update the list of supported architectures on Windows

2021-02-17 Thread Martin Storsjö via lldb-commits
On Wed, 17 Feb 2021, Omair Javaid wrote: HI  mstorsjo, did you manage to run LLDB testsuite with python support enabled on windows. Can you please share steps to build and test LLDB on windows on Arm/AArch64 if you have them handy somewhere. I ll check if there is something missing on our part w

[Lldb-commits] [lldb] ae14f3f - [LLDB] [docs] Update the list of supported architectures on Windows

2021-02-21 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-02-21T22:23:55+02:00 New Revision: ae14f3fdbfa85c92d64f5f38f883a6db4266ca80 URL: https://github.com/llvm/llvm-project/commit/ae14f3fdbfa85c92d64f5f38f883a6db4266ca80 DIFF: https://github.com/llvm/llvm-project/commit/ae14f3fdbfa85c92d64f5f38f883a6db4266ca80.diff

[Lldb-commits] [lldb] 2f18e51 - [lldb] Silence GCC warnings about format not being a string literal in LLDB_SCOPED_TIMER

2021-03-23 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-03-23T14:11:50+02:00 New Revision: 2f18e51d8b9e02d689efc522a0784caed5b5a386 URL: https://github.com/llvm/llvm-project/commit/2f18e51d8b9e02d689efc522a0784caed5b5a386 DIFF: https://github.com/llvm/llvm-project/commit/2f18e51d8b9e02d689efc522a0784caed5b5a386.diff

[Lldb-commits] [lldb] 476e087 - [LLDB] Fix building for aarch64 windows after d6d3d21cd1cb1567eaf7ff8c0867b07227a19d99

2021-04-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-04-06T14:03:42+03:00 New Revision: 476e087939e4c7cda4de9fa3bc998aea62da4096 URL: https://github.com/llvm/llvm-project/commit/476e087939e4c7cda4de9fa3bc998aea62da4096 DIFF: https://github.com/llvm/llvm-project/commit/476e087939e4c7cda4de9fa3bc998aea62da4096.diff

[Lldb-commits] [lldb] 127322d - [lldb] Silence GCC warnings about control reaching the end of non-void functions. NFC.

2021-04-14 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-04-14T11:54:45+03:00 New Revision: 127322ddebde9c3a0b1cd5cdc81b36870606b4f6 URL: https://github.com/llvm/llvm-project/commit/127322ddebde9c3a0b1cd5cdc81b36870606b4f6 DIFF: https://github.com/llvm/llvm-project/commit/127322ddebde9c3a0b1cd5cdc81b36870606b4f6.diff

[Lldb-commits] [lldb] a401870 - [lldb] Remove a superfluous trailing semicolon, fixing warnings. NFC.

2021-04-18 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-04-18T15:56:18+03:00 New Revision: a401870f550cc1fa30f94b9470245c15e1f5a80d URL: https://github.com/llvm/llvm-project/commit/a401870f550cc1fa30f94b9470245c15e1f5a80d DIFF: https://github.com/llvm/llvm-project/commit/a401870f550cc1fa30f94b9470245c15e1f5a80d.diff

[Lldb-commits] [lldb] 66cdd65 - [lldb] Reduce the stack alignment requirements for the Windows x86_64 ABI

2022-07-11 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-07-11T23:41:35+03:00 New Revision: 66cdd6548ac51f2039b9f0bc10ec03f387b210c4 URL: https://github.com/llvm/llvm-project/commit/66cdd6548ac51f2039b9f0bc10ec03f387b210c4 DIFF: https://github.com/llvm/llvm-project/commit/66cdd6548ac51f2039b9f0bc10ec03f387b210c4.diff

[Lldb-commits] [lldb] 306fc2c - [lldb] Fix build with GCC 9 after "[ADT] Use Empty Base Optimization for Allocators"

2022-07-13 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-07-13T12:57:04+03:00 New Revision: 306fc2cd87f2a52c21eb3606eff33d78e25d9368 URL: https://github.com/llvm/llvm-project/commit/306fc2cd87f2a52c21eb3606eff33d78e25d9368 DIFF: https://github.com/llvm/llvm-project/commit/306fc2cd87f2a52c21eb3606eff33d78e25d9368.diff

[Lldb-commits] [lldb] a1568fa - [lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

2022-07-13 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-07-13T23:57:01+03:00 New Revision: a1568fa27885d12c504e42dd02b0ce3687863fd8 URL: https://github.com/llvm/llvm-project/commit/a1568fa27885d12c504e42dd02b0ce3687863fd8 DIFF: https://github.com/llvm/llvm-project/commit/a1568fa27885d12c504e42dd02b0ce3687863fd8.diff

[Lldb-commits] [lldb] b7c5683 - [lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

2022-08-02 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-08-02T10:57:33+03:00 New Revision: b7c5683fac3de2f3349d57b9e133ac53204b1148 URL: https://github.com/llvm/llvm-project/commit/b7c5683fac3de2f3349d57b9e133ac53204b1148 DIFF: https://github.com/llvm/llvm-project/commit/b7c5683fac3de2f3349d57b9e133ac53204b1148.diff

[Lldb-commits] [lldb] a5881e8 - [lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

2022-08-11 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-08-12T00:35:32+03:00 New Revision: a5881e8a810bac74af2efcdcf12c741d52a1970a URL: https://github.com/llvm/llvm-project/commit/a5881e8a810bac74af2efcdcf12c741d52a1970a DIFF: https://github.com/llvm/llvm-project/commit/a5881e8a810bac74af2efcdcf12c741d52a1970a.diff

[Lldb-commits] [lldb] b21de9b - [lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

2022-08-22 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-08-22T14:53:29+03:00 New Revision: b21de9b38f4b5f2ae6d49f973b683f118b9d58cb URL: https://github.com/llvm/llvm-project/commit/b21de9b38f4b5f2ae6d49f973b683f118b9d58cb DIFF: https://github.com/llvm/llvm-project/commit/b21de9b38f4b5f2ae6d49f973b683f118b9d58cb.diff

[Lldb-commits] [lldb] 5f0080f - [lldb] Fix warnings about unused variables when building without asserts. NFC.

2022-08-29 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-08-29T13:25:38+03:00 New Revision: 5f0080fbe810caae3750d159da62bac04dbd844f URL: https://github.com/llvm/llvm-project/commit/5f0080fbe810caae3750d159da62bac04dbd844f DIFF: https://github.com/llvm/llvm-project/commit/5f0080fbe810caae3750d159da62bac04dbd844f.diff

[Lldb-commits] [lldb] 118038e - [lldb] Use the NativeSock type instead of plain 'int'

2022-08-30 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-08-30T10:07:44+03:00 New Revision: 118038e878cf7c169c74cdf31de019913775e881 URL: https://github.com/llvm/llvm-project/commit/118038e878cf7c169c74cdf31de019913775e881 DIFF: https://github.com/llvm/llvm-project/commit/118038e878cf7c169c74cdf31de019913775e881.diff

[Lldb-commits] [lldb] bc13101 - [lldb] Fix building for mingw after changes to sigtstp_handler

2022-03-26 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-03-26T22:32:53+02:00 New Revision: bc13101cf945114f2b573aa66845bec9c20f4e48 URL: https://github.com/llvm/llvm-project/commit/bc13101cf945114f2b573aa66845bec9c20f4e48 DIFF: https://github.com/llvm/llvm-project/commit/bc13101cf945114f2b573aa66845bec9c20f4e48.diff

[Lldb-commits] [lldb] b548f58 - [lldb] Fix interpreting absolute Windows paths with forward slashes

2022-03-26 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-03-26T22:34:02+02:00 New Revision: b548f5847235118878c15caa8df1b89e75fc965b URL: https://github.com/llvm/llvm-project/commit/b548f5847235118878c15caa8df1b89e75fc965b DIFF: https://github.com/llvm/llvm-project/commit/b548f5847235118878c15caa8df1b89e75fc965b.diff

[Lldb-commits] [lldb] a37cb5e - [lldb-vscode] Avoid a -Wunused-but-set-variable warning. NFC.

2022-03-30 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-03-31T00:10:05+03:00 New Revision: a37cb5ece513cbed9059880a45838331460e42fb URL: https://github.com/llvm/llvm-project/commit/a37cb5ece513cbed9059880a45838331460e42fb DIFF: https://github.com/llvm/llvm-project/commit/a37cb5ece513cbed9059880a45838331460e42fb.diff

[Lldb-commits] [lldb] e546bbf - [lldb] Fix detecting warning options for GCC

2022-04-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-06T22:50:07+03:00 New Revision: e546bbfda0ab91cf78c096d8c035851cc7c3b9f3 URL: https://github.com/llvm/llvm-project/commit/e546bbfda0ab91cf78c096d8c035851cc7c3b9f3 DIFF: https://github.com/llvm/llvm-project/commit/e546bbfda0ab91cf78c096d8c035851cc7c3b9f3.diff

[Lldb-commits] [lldb] ae2aa2d - [lldb] Silence GCC warnings about missing returns after fully covered switches. NFC.

2022-04-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-06T22:50:07+03:00 New Revision: ae2aa2d21b24a912314e618d1ceb8e036449b0b1 URL: https://github.com/llvm/llvm-project/commit/ae2aa2d21b24a912314e618d1ceb8e036449b0b1 DIFF: https://github.com/llvm/llvm-project/commit/ae2aa2d21b24a912314e618d1ceb8e036449b0b1.diff

[Lldb-commits] [lldb] 6e38824 - [lldb] Silence GCC/glibc warnings about ignoring the return value of write(). NFC.

2022-04-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-06T22:50:07+03:00 New Revision: 6e38824221db2e0d77d334d424331b3cf1ac279a URL: https://github.com/llvm/llvm-project/commit/6e38824221db2e0d77d334d424331b3cf1ac279a DIFF: https://github.com/llvm/llvm-project/commit/6e38824221db2e0d77d334d424331b3cf1ac279a.diff

[Lldb-commits] [lldb] 5560b9e - [lldb] [CMake] Disable GCC's -Wstringop-truncation warning. NFC.

2022-04-07 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-07T12:09:01+03:00 New Revision: 5560b9e88423dbe044f4e82d4dc3d4b6dbd0e678 URL: https://github.com/llvm/llvm-project/commit/5560b9e88423dbe044f4e82d4dc3d4b6dbd0e678 DIFF: https://github.com/llvm/llvm-project/commit/5560b9e88423dbe044f4e82d4dc3d4b6dbd0e678.diff

[Lldb-commits] [lldb] 3031fa8 - [lldb] Fix building standalone LLDB on Windows.

2022-04-07 Thread Martin Storsjö via lldb-commits
Author: Mehdi Chinoune Date: 2022-04-07T12:30:33+03:00 New Revision: 3031fa88f01e59dcacb0a3020fb9a27ccf2b7615 URL: https://github.com/llvm/llvm-project/commit/3031fa88f01e59dcacb0a3020fb9a27ccf2b7615 DIFF: https://github.com/llvm/llvm-project/commit/3031fa88f01e59dcacb0a3020fb9a27ccf2b7615.diff

[Lldb-commits] [lldb] 373d08a - [lldb] Silence warnings about unused static variables in RegisterInfos_arm64.h

2022-04-11 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-11T19:50:48+03:00 New Revision: 373d08adb4454d416bd2232525e5a6fbe45935ab URL: https://github.com/llvm/llvm-project/commit/373d08adb4454d416bd2232525e5a6fbe45935ab DIFF: https://github.com/llvm/llvm-project/commit/373d08adb4454d416bd2232525e5a6fbe45935ab.diff

[Lldb-commits] [lldb] 2a84a86 - [lldb] Fix initialization of LazyBool/bool variables m_overwrite/m_overwrite_lazy. NFCI.

2022-04-29 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-04-29T21:33:37+03:00 New Revision: 2a84a86184392a7e18a958f36db0b2b3da6ae2bd URL: https://github.com/llvm/llvm-project/commit/2a84a86184392a7e18a958f36db0b2b3da6ae2bd DIFF: https://github.com/llvm/llvm-project/commit/2a84a86184392a7e18a958f36db0b2b3da6ae2bd.diff

[Lldb-commits] [lldb] 9191078 - [lldb] Fix cross compiling on macOS

2022-05-27 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-05-28T00:53:25+03:00 New Revision: 9191078707390c32b691ff84633ab9450b380ea5 URL: https://github.com/llvm/llvm-project/commit/9191078707390c32b691ff84633ab9450b380ea5 DIFF: https://github.com/llvm/llvm-project/commit/9191078707390c32b691ff84633ab9450b380ea5.diff

[Lldb-commits] [lldb] c8daf4a - [lldb] Add gnu-debuglink support for Windows PE/COFF

2022-06-09 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-09T14:39:33+03:00 New Revision: c8daf4a707ad502b9694461246114bba01af5222 URL: https://github.com/llvm/llvm-project/commit/c8daf4a707ad502b9694461246114bba01af5222 DIFF: https://github.com/llvm/llvm-project/commit/c8daf4a707ad502b9694461246114bba01af5222.diff LO

[Lldb-commits] [lldb] 39c4ac1 - [lldb] Silence a GCC warning about missing returns after a fully covered switch. NFC.

2022-06-09 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-06-09T14:39:33+03:00 New Revision: 39c4ac140d1ee67d152c990f5d16a8df98155cbc URL: https://github.com/llvm/llvm-project/commit/39c4ac140d1ee67d152c990f5d16a8df98155cbc DIFF: https://github.com/llvm/llvm-project/commit/39c4ac140d1ee67d152c990f5d16a8df98155cbc.diff

[Lldb-commits] [lldb] 25c8a06 - [lldb] Set COFF module ABI from default triple and make it an option

2022-06-09 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-09T22:43:33+03:00 New Revision: 25c8a061c5739677d2fc0af29a8cc9520207b923 URL: https://github.com/llvm/llvm-project/commit/25c8a061c5739677d2fc0af29a8cc9520207b923 DIFF: https://github.com/llvm/llvm-project/commit/25c8a061c5739677d2fc0af29a8cc9520207b923.diff LO

[Lldb-commits] [lldb] 87a2dba - [lldb] Fix loading DLL from some ramdisk on Windows

2022-06-15 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-15T17:02:33+03:00 New Revision: 87a2dba14ec82629317e13c2bce4c93b4d0a837d URL: https://github.com/llvm/llvm-project/commit/87a2dba14ec82629317e13c2bce4c93b4d0a837d DIFF: https://github.com/llvm/llvm-project/commit/87a2dba14ec82629317e13c2bce4c93b4d0a837d.diff LO

[Lldb-commits] [lldb] c9fc433 - [lldb] Fix building with GCC 7

2022-06-20 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-06-21T00:19:09+03:00 New Revision: c9fc4336d4b35cd1ed8083336c997c159f286794 URL: https://github.com/llvm/llvm-project/commit/c9fc4336d4b35cd1ed8083336c997c159f286794 DIFF: https://github.com/llvm/llvm-project/commit/c9fc4336d4b35cd1ed8083336c997c159f286794.diff

[Lldb-commits] [lldb] 9846a1f - [lldb] Remove an outdated comment. NFC.

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-06-22T16:11:59+03:00 New Revision: 9846a1f2d4723a8c060370638bbd52360638d0fc URL: https://github.com/llvm/llvm-project/commit/9846a1f2d4723a8c060370638bbd52360638d0fc DIFF: https://github.com/llvm/llvm-project/commit/9846a1f2d4723a8c060370638bbd52360638d0fc.diff

[Lldb-commits] [lldb] 8a64dd5 - [lldb] Fix reading i686-windows executables with GNU environment

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-06-22T17:16:05+03:00 New Revision: 8a64dd5b06146f073a4a326f0e24fa18e571b281 URL: https://github.com/llvm/llvm-project/commit/8a64dd5b06146f073a4a326f0e24fa18e571b281 DIFF: https://github.com/llvm/llvm-project/commit/8a64dd5b06146f073a4a326f0e24fa18e571b281.diff

[Lldb-commits] [lldb] 2bae956 - [lldb] Resolve exe location for `target create`

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-22T17:16:05+03:00 New Revision: 2bae9560575362ffd756f193efa1de2d5c2f4cfd URL: https://github.com/llvm/llvm-project/commit/2bae9560575362ffd756f193efa1de2d5c2f4cfd DIFF: https://github.com/llvm/llvm-project/commit/2bae9560575362ffd756f193efa1de2d5c2f4cfd.diff LO

[Lldb-commits] [lldb] 4d12378 - [lldb][windows] Fix crash on getting nested exception

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-22T17:16:06+03:00 New Revision: 4d123783957e547009e55346bf3a8ae43a88fa14 URL: https://github.com/llvm/llvm-project/commit/4d123783957e547009e55346bf3a8ae43a88fa14 DIFF: https://github.com/llvm/llvm-project/commit/4d123783957e547009e55346bf3a8ae43a88fa14.diff LO

[Lldb-commits] [lldb] 3c86789 - [lldb] Add setting to override PE/COFF ABI by module name

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-22T17:16:06+03:00 New Revision: 3c867898c7be7ed2b5d119a2478a836a0c85f19b URL: https://github.com/llvm/llvm-project/commit/3c867898c7be7ed2b5d119a2478a836a0c85f19b DIFF: https://github.com/llvm/llvm-project/commit/3c867898c7be7ed2b5d119a2478a836a0c85f19b.diff LO

[Lldb-commits] [lldb] 0bc7105 - [lldb] Tentative attempt to fix command-target-create-resolve-exe.test on buildbot

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-06-22T18:48:04+03:00 New Revision: 0bc7105cd1447c2d85716c3dcd2924595decc939 URL: https://github.com/llvm/llvm-project/commit/0bc7105cd1447c2d85716c3dcd2924595decc939 DIFF: https://github.com/llvm/llvm-project/commit/0bc7105cd1447c2d85716c3dcd2924595decc939.diff

[Lldb-commits] [lldb] a1ee0b9 - [lldb] Second attempt at fixing command-target-create-resolve-exe.test on the buildbot

2022-06-22 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-06-22T20:49:30+03:00 New Revision: a1ee0b947d46c9be1cc2ea8db21603bac84efb18 URL: https://github.com/llvm/llvm-project/commit/a1ee0b947d46c9be1cc2ea8db21603bac84efb18 DIFF: https://github.com/llvm/llvm-project/commit/a1ee0b947d46c9be1cc2ea8db21603bac84efb18.diff LO

[Lldb-commits] [lldb] 4270c9c - [lldb] Stop passing both i386 and i686 in parallel as architectures on Windows

2022-07-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-07-06T12:13:36+03:00 New Revision: 4270c9cd44f2703bc5376ff085d0add156af9080 URL: https://github.com/llvm/llvm-project/commit/4270c9cd44f2703bc5376ff085d0add156af9080 DIFF: https://github.com/llvm/llvm-project/commit/4270c9cd44f2703bc5376ff085d0add156af9080.diff

[Lldb-commits] [lldb] 5d330f4 - [lldb] [Windows] Remove unused functions. NFC.

2020-10-10 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-10-10T20:47:40+03:00 New Revision: 5d330f435e12d4a7f97cde406d29ce7413f96b47 URL: https://github.com/llvm/llvm-project/commit/5d330f435e12d4a7f97cde406d29ce7413f96b47 DIFF: https://github.com/llvm/llvm-project/commit/5d330f435e12d4a7f97cde406d29ce7413f96b47.diff

[Lldb-commits] [lldb] abaca23 - [lldb] [Windows] Add missing 'override', silencing warnings. NFC.

2020-10-10 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-10-10T20:47:40+03:00 New Revision: abaca237c519a406ab00606b0464c32079831803 URL: https://github.com/llvm/llvm-project/commit/abaca237c519a406ab00606b0464c32079831803 DIFF: https://github.com/llvm/llvm-project/commit/abaca237c519a406ab00606b0464c32079831803.diff

[Lldb-commits] [lldb] 84ce6b9 - [lldb] Fix building with GCC 7. NFC.

2020-10-23 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-10-24T09:33:01+03:00 New Revision: 84ce6b9991bb6db1c37897aca55978a377ce931a URL: https://github.com/llvm/llvm-project/commit/84ce6b9991bb6db1c37897aca55978a377ce931a DIFF: https://github.com/llvm/llvm-project/commit/84ce6b9991bb6db1c37897aca55978a377ce931a.diff

[Lldb-commits] [lldb] aa786b8 - [lldb] [PECOFF] Only use PECallFrameInfo on the one supported architecture

2020-04-01 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-04-01T12:39:21+03:00 New Revision: aa786b881fc89a2a9883bff77912f2053126f95b URL: https://github.com/llvm/llvm-project/commit/aa786b881fc89a2a9883bff77912f2053126f95b DIFF: https://github.com/llvm/llvm-project/commit/aa786b881fc89a2a9883bff77912f2053126f95b.diff

[Lldb-commits] [lldb] 613d866 - [lldb] Remove a redundant semicolon, fixing GCC warnings. NFC.

2020-04-29 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-04-29T21:00:43+03:00 New Revision: 613d86637434182adb4f2a1f629a2ec94d02b569 URL: https://github.com/llvm/llvm-project/commit/613d86637434182adb4f2a1f629a2ec94d02b569 DIFF: https://github.com/llvm/llvm-project/commit/613d86637434182adb4f2a1f629a2ec94d02b569.diff

[Lldb-commits] [lldb] 0cd9e59 - [ProcessGDBRemote] Fix a typo in an ifdef from 58de2a3851391d

2020-06-24 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-06-24T23:49:33+03:00 New Revision: 0cd9e598291df8c633aaa0c0e1d8eeab95de9680 URL: https://github.com/llvm/llvm-project/commit/0cd9e598291df8c633aaa0c0e1d8eeab95de9680 DIFF: https://github.com/llvm/llvm-project/commit/0cd9e598291df8c633aaa0c0e1d8eeab95de9680.diff

[Lldb-commits] [lldb] 340c376 - [lldb] Fix a CMake warning typo. NFC.

2020-07-13 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-07-13T22:48:17+03:00 New Revision: 340c376b87c72e7eb3670301e4920106615b6689 URL: https://github.com/llvm/llvm-project/commit/340c376b87c72e7eb3670301e4920106615b6689 DIFF: https://github.com/llvm/llvm-project/commit/340c376b87c72e7eb3670301e4920106615b6689.diff

[Lldb-commits] [lldb] f07ddbc - [LLDB] [COFF] Fix handling of symbols with more than one aux symbol

2020-07-20 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-07-20T22:42:28+03:00 New Revision: f07ddbc9c4b66e91aa7a106042512ee903b6b3ba URL: https://github.com/llvm/llvm-project/commit/f07ddbc9c4b66e91aa7a106042512ee903b6b3ba DIFF: https://github.com/llvm/llvm-project/commit/f07ddbc9c4b66e91aa7a106042512ee903b6b3ba.diff

[Lldb-commits] [Differential] D84070: [LLDB] [COFF] Fix handling of symbols with more than one aux symbol

2020-07-20 Thread Martin Storsjö via lldb-commits
This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGf07ddbc9c4b6: [LLDB] [COFF] Fix handling of symbols with more than one aux symbol (authored by mstorsjo). Changed prior to commit: https://reviews

[Lldb-commits] [lldb] 13cde67 - [lldb] Remove a stray semicolon, fixing pedantic GCC warnings. NFC.

2020-09-03 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-09-03T11:19:40+03:00 New Revision: 13cde6733b5fec9eff5e9652686c3b02055e6169 URL: https://github.com/llvm/llvm-project/commit/13cde6733b5fec9eff5e9652686c3b02055e6169 DIFF: https://github.com/llvm/llvm-project/commit/13cde6733b5fec9eff5e9652686c3b02055e6169.diff

[Lldb-commits] [lldb] cc76965 - [MinGW] Use lib prefix for libraries

2020-09-12 Thread Martin Storsjö via lldb-commits
Author: Mateusz Mikuła Date: 2020-09-12T22:01:29+03:00 New Revision: cc76965b19085519278bff1052059e03769b71e8 URL: https://github.com/llvm/llvm-project/commit/cc76965b19085519278bff1052059e03769b71e8 DIFF: https://github.com/llvm/llvm-project/commit/cc76965b19085519278bff1052059e03769b71e8.diff

[Lldb-commits] [lldb] b4133a2 - [lldb] [Windows] Fix an incorrect assert in NativeRegisterContextWindows_arm

2021-09-15 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-09-15T15:03:20+03:00 New Revision: b4133a21cef49edb57cf96bb7d7518099d61e910 URL: https://github.com/llvm/llvm-project/commit/b4133a21cef49edb57cf96bb7d7518099d61e910 DIFF: https://github.com/llvm/llvm-project/commit/b4133a21cef49edb57cf96bb7d7518099d61e910.diff

[Lldb-commits] [lldb] 9f34f75 - [lldb] [Windows] Fix continuing from breakpoints and singlestepping on ARM/AArch64

2021-09-22 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-09-22T14:11:41+03:00 New Revision: 9f34f75ff8f49b0efca6e20d916527a2c432d8b4 URL: https://github.com/llvm/llvm-project/commit/9f34f75ff8f49b0efca6e20d916527a2c432d8b4 DIFF: https://github.com/llvm/llvm-project/commit/9f34f75ff8f49b0efca6e20d916527a2c432d8b4.diff

[Lldb-commits] [lldb] 7106f58 - [lldb] Make the thread_local g_global_boundary accessed from a single file

2021-10-14 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-10-14T11:17:20+03:00 New Revision: 7106f588567b59acb17c77f6116ba433b6226333 URL: https://github.com/llvm/llvm-project/commit/7106f588567b59acb17c77f6116ba433b6226333 DIFF: https://github.com/llvm/llvm-project/commit/7106f588567b59acb17c77f6116ba433b6226333.diff

[Lldb-commits] [lldb] ea9e9d6 - [lldb] [Host/SerialPort] Fix build with GCC 7

2021-10-23 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-10-23T12:52:55+03:00 New Revision: ea9e9d61b521adaaa2d7f03712f9f6b9e9dfe8a1 URL: https://github.com/llvm/llvm-project/commit/ea9e9d61b521adaaa2d7f03712f9f6b9e9dfe8a1 DIFF: https://github.com/llvm/llvm-project/commit/ea9e9d61b521adaaa2d7f03712f9f6b9e9dfe8a1.diff

[Lldb-commits] [lldb] a2c9cf4 - [lldb] Use is_style_posix() for path style checks

2021-11-05 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2021-11-05T21:50:45+02:00 New Revision: a2c9cf4c76974086a206c86a172085162a57de9b URL: https://github.com/llvm/llvm-project/commit/a2c9cf4c76974086a206c86a172085162a57de9b DIFF: https://github.com/llvm/llvm-project/commit/a2c9cf4c76974086a206c86a172085162a57de9b.diff

[Lldb-commits] [lldb] 1919720 - [lldb] [debugserver] Simplify handling of arch specific files

2022-01-06 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-01-06T10:23:04+02:00 New Revision: 1919720fdd348ca568b235bf3f1357c198eccd15 URL: https://github.com/llvm/llvm-project/commit/1919720fdd348ca568b235bf3f1357c198eccd15 DIFF: https://github.com/llvm/llvm-project/commit/1919720fdd348ca568b235bf3f1357c198eccd15.diff

Re: [Lldb-commits] [lldb] 9be5c13 - [lldb/Test] Add check-lldb-repro target

2020-01-22 Thread Martin Storsjö via lldb-commits
On Wed, 22 Jan 2020, Jonas Devlieghere via lldb-commits wrote: Author: Jonas Devlieghere Date: 2020-01-22T17:35:45-08:00 New Revision: 9be5c13538898c7632c2de7300de9479688a2460 URL: https://github.com/llvm/llvm-project/commit/9be5c13538898c7632c2de7300de9479688a2460 DIFF: https://github.com/l

Re: [Lldb-commits] [lldb] 9be5c13 - [lldb/Test] Add check-lldb-repro target

2020-01-23 Thread Martin Storsjö via lldb-commits
On Wed, 22 Jan 2020, Jonas Devlieghere via lldb-commits wrote: Author: Jonas Devlieghere Date: 2020-01-22T17:35:45-08:00 New Revision: 9be5c13538898c7632c2de7300de9479688a2460 URL: https://github.com/llvm/llvm-project/commit/9be5c13538898c7632c2de7300de9479688a2460 DIFF: https://github.com/l

[Lldb-commits] [lldb] 6115bd9 - [LLDB] Fix GCC warnings about extra semicolons. NFC.

2020-02-10 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-02-10T11:20:44+02:00 New Revision: 6115bd9ba2851469d372d0d7b36d87a3e1d8094b URL: https://github.com/llvm/llvm-project/commit/6115bd9ba2851469d372d0d7b36d87a3e1d8094b DIFF: https://github.com/llvm/llvm-project/commit/6115bd9ba2851469d372d0d7b36d87a3e1d8094b.diff

[Lldb-commits] [lldb] 7002128 - [LLDB] Fix GCC warnings about extra semicolons. NFC.

2020-02-12 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-02-12T13:40:33+02:00 New Revision: 7002128ca935aa02be104e2a0c5812260990b074 URL: https://github.com/llvm/llvm-project/commit/7002128ca935aa02be104e2a0c5812260990b074 DIFF: https://github.com/llvm/llvm-project/commit/7002128ca935aa02be104e2a0c5812260990b074.diff

[Lldb-commits] [lldb] 0e1da1e - [LLDB] Fix GCC warnings about extra semicolons. NFC.

2020-02-17 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2020-02-17T14:16:46+02:00 New Revision: 0e1da1ef4af24ece9db4b0467b6c1932088c951e URL: https://github.com/llvm/llvm-project/commit/0e1da1ef4af24ece9db4b0467b6c1932088c951e DIFF: https://github.com/llvm/llvm-project/commit/0e1da1ef4af24ece9db4b0467b6c1932088c951e.diff

[Lldb-commits] [lldb] [lldb] Print empty enums as if they were unrecognised normal enums (PR #97553)

2024-07-03 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: This causes build errors with GCC (11): ``` ../../lldb/unittests/ValueObject/DumpValueObjectOptionsTests.cpp: In member function ‘virtual void ValueObjectMockProcessTest_EmptyEnum_Test::TestBody()’: ../../lldb/unittests/ValueObject/DumpValueObjectOptionsTests.cpp:134:22: error:

[Lldb-commits] [lldb] [lldb] Change lldb's breakpoint handling behavior (PR #96260)

2024-07-20 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: FYI, I also ran into failures due to this change, when debugging on Windows (with DWARF). See the run in https://github.com/mstorsjo/actions-test/actions/runs/10020326811 vs https://github.com/mstorsjo/actions-test/actions/runs/10020393197. Thanks for reverting; hopefully it’s

[Lldb-commits] [lldb] [lldb] Change lldb's breakpoint handling behavior (PR #96260)

2024-07-20 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: > > FYI, I also ran into failures due to this change, when debugging on Windows > > (with DWARF). See the run in > > https://github.com/mstorsjo/actions-test/actions/runs/10020326811 vs > > https://github.com/mstorsjo/actions-test/actions/runs/10020393197. Thanks > > for rever

[Lldb-commits] [lldb] [lldb][NFC] Separated GDBRemoteCommunication::GetDebugserverPath() (PR #107388)

2024-09-06 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: > Oops, I copied `shared_fd_t` from #104238 by mistake > > ``` > Status GDBRemoteCommunication::StartDebugserverProcess(... , shared_fd_t > pass_comm_fd) { > ``` > > It will break the Windows build. I can replace it with `int` or we can apply > #107553. Please advise. As some

[Lldb-commits] [lldb] [lldb][NFC] Separated GDBRemoteCommunication::GetDebugserverPath() (PR #107388)

2024-09-06 Thread Martin Storsjö via lldb-commits
mstorsjo wrote: Thanks for the quick fix! https://github.com/llvm/llvm-project/pull/107388 ___ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [lldb] 9a4b3fd - [lldb][windows] _wsopen_s does not accept bits other than `_S_IREAD | _S_IWRITE`

2023-08-30 Thread Martin Storsjö via lldb-commits
Author: Yuxuan Shui Date: 2023-08-30T15:53:31+03:00 New Revision: 9a4b3fdb82327e808213070fd157be3c557b8b9d URL: https://github.com/llvm/llvm-project/commit/9a4b3fdb82327e808213070fd157be3c557b8b9d DIFF: https://github.com/llvm/llvm-project/commit/9a4b3fdb82327e808213070fd157be3c557b8b9d.diff L

[Lldb-commits] [lldb] d918b81 - [lldb] [debugserver] Add spaces between sentences in a CMake warning. NFC.

2023-10-04 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2023-10-04T14:34:12+03:00 New Revision: d918b813c852fb4632875c683f4b9552eddea30d URL: https://github.com/llvm/llvm-project/commit/d918b813c852fb4632875c683f4b9552eddea30d DIFF: https://github.com/llvm/llvm-project/commit/d918b813c852fb4632875c683f4b9552eddea30d.diff

[Lldb-commits] [lldb] [libc++] Use -nostdlib++ on GCC unconditionally (PR #68832)

2023-10-13 Thread Martin Storsjö via lldb-commits
@@ -642,18 +642,8 @@ get_sanitizer_flags(SANITIZER_FLAGS "${LLVM_USE_SANITIZER}") # Link system libraries === function(cxx_link_system_libraries target) - -# In order to remove just libc++ from the link step -# we need to us

[Lldb-commits] [lldb] [libc++] Use -nostdlib++ on GCC unconditionally (PR #68832)

2023-10-13 Thread Martin Storsjö via lldb-commits
@@ -642,18 +642,8 @@ get_sanitizer_flags(SANITIZER_FLAGS "${LLVM_USE_SANITIZER}") # Link system libraries === function(cxx_link_system_libraries target) - -# In order to remove just libc++ from the link step -# we need to us

[Lldb-commits] [lldb] a8483b9 - [lldb] Fix a log format warning on Windows, don't assume uint64_t is a long type

2023-02-15 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2023-02-15T14:44:17+02:00 New Revision: a8483b9b30385807790882b3b770fa6d016a0aa4 URL: https://github.com/llvm/llvm-project/commit/a8483b9b30385807790882b3b770fa6d016a0aa4 DIFF: https://github.com/llvm/llvm-project/commit/a8483b9b30385807790882b3b770fa6d016a0aa4.diff

[Lldb-commits] [lldb] 68744ff - [lldb] Fix building with latest libc++

2023-08-10 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2023-08-10T12:59:35+03:00 New Revision: 68744ffbdd7daac41da274eef9ac0d191e11c16d URL: https://github.com/llvm/llvm-project/commit/68744ffbdd7daac41da274eef9ac0d191e11c16d DIFF: https://github.com/llvm/llvm-project/commit/68744ffbdd7daac41da274eef9ac0d191e11c16d.diff

[Lldb-commits] [lldb] 8a3597d - [lldb] Fix CommandInterpreter::DidProcessStopAbnormally() with multiple threads

2022-09-26 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-09-26T11:05:42+03:00 New Revision: 8a3597d73c8f694ca8c991d8cb4bb97a4ac8ba8c URL: https://github.com/llvm/llvm-project/commit/8a3597d73c8f694ca8c991d8cb4bb97a4ac8ba8c DIFF: https://github.com/llvm/llvm-project/commit/8a3597d73c8f694ca8c991d8cb4bb97a4ac8ba8c.diff

[Lldb-commits] [lldb] a426753 - [lldb] Add newline in output of `target modules lookup`

2022-09-27 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-27T13:09:45+03:00 New Revision: a426753ef0290362a0268f917dba46d6b9744b02 URL: https://github.com/llvm/llvm-project/commit/a426753ef0290362a0268f917dba46d6b9744b02 DIFF: https://github.com/llvm/llvm-project/commit/a426753ef0290362a0268f917dba46d6b9744b02.diff LO

[Lldb-commits] [lldb] f4991bf - [lldb] Improve display of absolute symbol lookup

2022-09-27 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-27T13:09:59+03:00 New Revision: f4991bfa891eaf9f36aa3b79da6fed4228b69de9 URL: https://github.com/llvm/llvm-project/commit/f4991bfa891eaf9f36aa3b79da6fed4228b69de9 DIFF: https://github.com/llvm/llvm-project/commit/f4991bfa891eaf9f36aa3b79da6fed4228b69de9.diff LO

[Lldb-commits] [lldb] bf0cda9 - [lldb][COFF] Rewrite ParseSymtab to list both export and symbol tables

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:10+03:00 New Revision: bf0cda9ed2783a34efed3fc9804d784f7d1df242 URL: https://github.com/llvm/llvm-project/commit/bf0cda9ed2783a34efed3fc9804d784f7d1df242 DIFF: https://github.com/llvm/llvm-project/commit/bf0cda9ed2783a34efed3fc9804d784f7d1df242.diff LO

[Lldb-commits] [lldb] 0870afc - [lldb][COFF] Improve info of symbols from export table

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:10+03:00 New Revision: 0870afc68e1a1ec303af1d0dbf952dd2c41f478a URL: https://github.com/llvm/llvm-project/commit/0870afc68e1a1ec303af1d0dbf952dd2c41f478a DIFF: https://github.com/llvm/llvm-project/commit/0870afc68e1a1ec303af1d0dbf952dd2c41f478a.diff LO

[Lldb-commits] [lldb] 20c2f94 - [lldb][COFF] Match symbols from COFF symbol table to export symbols

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:11+03:00 New Revision: 20c2f94c3cc10c41ab45e1be156540a06306cdf1 URL: https://github.com/llvm/llvm-project/commit/20c2f94c3cc10c41ab45e1be156540a06306cdf1 DIFF: https://github.com/llvm/llvm-project/commit/20c2f94c3cc10c41ab45e1be156540a06306cdf1.diff LO

[Lldb-commits] [lldb] 7ebff6a - [lldb][COFF] Load absolute symbols from COFF symbol table

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:11+03:00 New Revision: 7ebff6ab26aa03423c61e0370377f11725184199 URL: https://github.com/llvm/llvm-project/commit/7ebff6ab26aa03423c61e0370377f11725184199 DIFF: https://github.com/llvm/llvm-project/commit/7ebff6ab26aa03423c61e0370377f11725184199.diff LO

[Lldb-commits] [lldb] acf7d08 - [lldb][COFF] Add note to forwarder export symbols in symtab

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:11+03:00 New Revision: acf7d081198f380d6ad2a1b859930e50a9cf2dae URL: https://github.com/llvm/llvm-project/commit/acf7d081198f380d6ad2a1b859930e50a9cf2dae DIFF: https://github.com/llvm/llvm-project/commit/acf7d081198f380d6ad2a1b859930e50a9cf2dae.diff LO

[Lldb-commits] [lldb] 8a67a05 - [lldb][COFF] Map symbols without base+complex type as 'Data' type

2022-09-28 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-28T12:57:12+03:00 New Revision: 8a67a05e93349e341d1325f1a6428d1373f77177 URL: https://github.com/llvm/llvm-project/commit/8a67a05e93349e341d1325f1a6428d1373f77177 DIFF: https://github.com/llvm/llvm-project/commit/8a67a05e93349e341d1325f1a6428d1373f77177.diff LO

[Lldb-commits] [lldb] fe17e02 - [lldb][Windows] Always call SetExecutableModule on debugger connected

2022-09-30 Thread Martin Storsjö via lldb-commits
Author: Alvin Wong Date: 2022-09-30T13:51:56+03:00 New Revision: fe17e026959cc263c12fafa3a8e9e83503f9a18b URL: https://github.com/llvm/llvm-project/commit/fe17e026959cc263c12fafa3a8e9e83503f9a18b DIFF: https://github.com/llvm/llvm-project/commit/fe17e026959cc263c12fafa3a8e9e83503f9a18b.diff LO

[Lldb-commits] [lldb] e9e3a61 - [lldb] Fix warnings about unused variables when building without asserts. NFC.

2022-10-01 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-10-01T14:27:48+03:00 New Revision: e9e3a612ecd18a42f931c09223898128da3142f6 URL: https://github.com/llvm/llvm-project/commit/e9e3a612ecd18a42f931c09223898128da3142f6 DIFF: https://github.com/llvm/llvm-project/commit/e9e3a612ecd18a42f931c09223898128da3142f6.diff

[Lldb-commits] [lldb] b2a5dd1 - [LLDB] Fix the build for ppc64le linux

2022-10-18 Thread Martin Storsjö via lldb-commits
Author: Martin Storsjö Date: 2022-10-18T11:54:19+03:00 New Revision: b2a5dd12a47a784f09628f1c10ab369c3b2c3c88 URL: https://github.com/llvm/llvm-project/commit/b2a5dd12a47a784f09628f1c10ab369c3b2c3c88 DIFF: https://github.com/llvm/llvm-project/commit/b2a5dd12a47a784f09628f1c10ab369c3b2c3c88.diff