Build macOS with wgpu enabled

This commit is contained in:
2023-11-27 19:52:12 -05:00
parent 67cea2a8d9
commit 53e6e0c7c4
2 changed files with 18 additions and 2 deletions

View File

@@ -126,7 +126,17 @@ If not specified, objdiff will use the default patterns listed above.
> `reverse_fn_order` _(optional)_: Displays function symbols in reversed order.
Used to support MWCC's `-inline deferred` option, which reverses the order of functions in the object file.
## Building
Install Rust via [rustup](https://rustup.rs).
```shell
$ git clone https://github.com/encounter/objdiff.git
$ cd objdiff
$ cargo run --release
# or, for wgpu backend (recommended on macOS)
$ cargo run --release --features wgpu
```
## License