-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linting support on Apple Silicon (#489)
* Fix linting support on M1 * Fix CI and add arch to debug output * Fix regex for windows
- Loading branch information
Showing
3 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,38 @@ | ||
# This file corresponds to the `.cargo/config.toml` file used for the `dylint` examples here: | ||
# https://github.com/trailofbits/dylint/tree/master/examples. | ||
|
||
[target.aarch64-apple-darwin] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-apple-darwin] | ||
linker = "dylint-link" | ||
|
||
[target.aarch64-unknown-linux-gnu] | ||
linker = "dylint-link" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-unknown-linux-musl] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-unknown-linux-gnux32] | ||
linker = "dylint-link" | ||
|
||
[target.aarch64-pc-windows-msvc] | ||
linker = "dylint-link" | ||
|
||
[target.i586-pc-windows-msvc] | ||
linker = "dylint-link" | ||
|
||
[target.i586-pc-windows-gnu] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-pc-windows-msvc] | ||
linker = "dylint-link" | ||
|
||
[target.x86_64-pc-windows-gnu] | ||
linker = "dylint-link" |