Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vadimcn committed Mar 11, 2023
1 parent edd37e5 commit 88d6925
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
# Release Notes

# 1.8.2

# 1.9.0

## New
- Updated the bundled LLDB to v16.0.0
- It is now possible to combine number format specifiers (`foo,x`) and "reinterpret as array" speficiers (`foo,[10]`)
together: `foo,x[10]` (Feature request #851).
- Added support for native VSCode [disassmbly view](https://devblogs.microsoft.com/cppblog/visual-studio-code-c-july-2021-update-disassembly-view-macro-expansion-and-windows-arm64-debugging/#disassembly-view) (thanks @puremourning!).

## Fixed
- #813: Mixed GAS/Intel syntax in disassembly view.
- #842: Syntax error in conditional breakpoint.

## New
- Added support for VSCode native Disassembly View (thanks @puremourning!).
- #840: Make the whole command string readable in the "Select a process" dropdown window.

# 1.8.1

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ and Zig.
# Supported Platforms

## Host
- [Linux](https://github.com/vadimcn/codelldb/wiki/Linux) with glibc 2.18+ for x86_64, aarch64 or armhf,
- [MacOS](https://github.com/vadimcn/codelldb/wiki/MacOS) X 10.10+ for x86_64 and 11.0+ for arm64,
- [Windows](https://github.com/vadimcn/codelldb/wiki/Windows) 10 for x86_64.
- Linux with glibc 2.18+ for x86_64, aarch64 or armhf.
- MacOS X 10.10+ for x86_64 and 11.0+ for arm64.
- Windows 10 and 11 for x86_64. [See Windows notes in wiki!](https://github.com/vadimcn/codelldb/wiki/Windows)

## Target
CodeLLDB supports AArch64, ARM, AVR, MSP430, RISCV, X86 architectures and may be used to debug on embedded platforms
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,12 +70,12 @@
"commands": [
{
"category": "LLDB",
"title": "Display Format ...",
"title": "Display Format...",
"command": "lldb.displayFormat"
},
{
"category": "LLDB",
"title": "Show Disassembly ...",
"title": "Show Disassembly...",
"command": "lldb.showDisassembly"
},
{
Expand Down Expand Up @@ -969,7 +969,7 @@
}
},
{
"label": "CodeLLDB: Attach by PID",
"label": "CodeLLDB: Attach to PID",
"description": "Attach to a running process with the specified process id.",
"body": {
"type": "lldb",
Expand Down

0 comments on commit 88d6925

Please sign in to comment.