-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mark S
committed
Jul 14, 2022
0 parents
commit fe64c4f
Showing
15 changed files
with
3,491 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
####################################### | ||
# Cargo-Specific Options # | ||
####################################### | ||
|
||
target-applies-to-host = false | ||
|
||
|
||
####################################### | ||
# Target-Specific Options # | ||
####################################### | ||
|
||
[target.x86_64-apple-darwin] | ||
rustflags = [ | ||
"-C", "link-arg=-undefined", | ||
"-C", "link-arg=dynamic_lookup", | ||
] | ||
|
||
[target.aarch64-apple-darwin] | ||
rustflags = [ | ||
"-C", "link-arg=-undefined", | ||
"-C", "link-arg=dynamic_lookup", | ||
] | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
linker = "x86_64-unknown-linux-gnu-gcc" | ||
|
||
#[target.aarch64-unknown-linux-gnu] | ||
#linker = "aarch64-unknown-linux-gnu-gcc" | ||
|
||
[target.x86_64-unknown-linux-musl] | ||
linker = "x86_64-linux-musl-gcc" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
linker = "aarch64-linux-musl-gcc" | ||
|
||
[target.x86_64-pc-windows-msvc] | ||
linker = "rust-lld.exe" | ||
|
||
# [target.wasm32-wasi] | ||
|
||
# [target.wasm32-unknown-unknown] | ||
|
||
# [target.wasm32-unknown-emscripten] | ||
|
||
# [target.x86_64-unknown-linux-musl] | ||
|
||
# [target.aarch64-unknown-linux-musl] | ||
|
||
|
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Ignore everything | ||
* | ||
|
||
# EXCEPT the following (must be prepended with '!' to NOT be ignored) | ||
!src/ | ||
!.cargo/ | ||
!artifacts/ | ||
!Cargo.lock | ||
!Cargo.toml | ||
!Cross.toml | ||
|
||
# However, don't include these files, if they exist | ||
**/.DS_Store |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# Ignore | ||
artifacts/** | ||
.cargo/config.toml | ||
Cross.toml | ||
k8s/** | ||
target/ | ||
.idea/ | ||
.run/ | ||
|
||
# Except | ||
!artifacts/placeholder | ||
!k8s/cluster-role.yaml | ||
!k8s/role-binding.yaml | ||
!k8s/pinnothera-config.yaml |
Oops, something went wrong.