Skip to content

Commit

Permalink
Release 0.2.0.
Browse files Browse the repository at this point in the history
## New features

- x64 macOS support
  • Loading branch information
nullpo-head committed May 18, 2021
1 parent 82061b2 commit 837f8ce
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,31 @@ The current supported languages are C, C++, Rust, Go, Python and any languages w

### Platforms

Currently only Linux (including WSL2 on Windows) is supported. However, adding macOS support is pretty easy and will be added soon if there are any macOS users.
Please say hi to me in a GitHub issue.
- Linux x64 (including WSL2). Tested and built on ubuntu-latest of GitHub action
- macOS x64. Tested and built on macos-latest of GitHub action

## Installation

There are two components, `dbgee` command and the optional VSCode extension.

### `dbgee` command

#### Linux

```shell
curl -L -O https://github.com/nullpo-head/dbgee/releases/download/cli-v0.1.0/dbgee-linux-x64.tar.gz
curl -L -O https://github.com/nullpo-head/dbgee/releases/download/cli-v0.2.0/dbgee-linux-x64.tar.gz
tar xvf dbgee-linux-x64.tar.gz
mv dbgee /usr/local/bin/ # Or anywhere in the PATH
```

#### macOS

```shell
curl -L -O https://github.com/nullpo-head/dbgee/releases/download/cli-v0.2.0/dbgee-darwin-x64.tar.gz
tar xvf dbgee-darwin-x64.tar.gz
mv dbgee /usr/local/bin/ # Or anywhere in the PATH
```

### VSCode extension

Please install "Dbgee" extension from [the marketplace](https://marketplace.visualstudio.com/items?itemName=nullpo-head.dbgee).
Expand Down

0 comments on commit 837f8ce

Please sign in to comment.