-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add orgs fixed due to github html struct change and some draft code #2
- Loading branch information
Showing
14 changed files
with
699 additions
and
574 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,32 @@ | ||
[build] | ||
jobs = 6 # number of parallel jobs, defaults to # of CPUs | ||
target = [ | ||
"x86_64-unknown-linux-gnu", | ||
] # build for the target triple (ignored by `cargo install`) | ||
target-dir = "target" # path of where to place all generated artifacts | ||
incremental = true # whether or not to enable incremental compilation | ||
rustc-wrapper = "/usr/local/bin/sccache" | ||
|
||
[registries.crates-io] | ||
protocol = "sparse" | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
linker = "/usr/bin/clang" | ||
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/mold"] | ||
|
||
# Modify profile settings via config. | ||
[profile.dev] | ||
opt-level = 0 # Optimization level. | ||
debug = true # Include debug info. | ||
debug-assertions = true # Enables debug assertions. | ||
overflow-checks = true # Enables runtime integer overflow checks. | ||
lto = false # Sets link-time optimization. | ||
panic = 'unwind' # The panic strategy. | ||
incremental = true # Incremental compilation. | ||
codegen-units = 16 # Number of code generation units. | ||
rpath = false # Sets the rpath linking option. | ||
|
||
[profile.release] | ||
debug = true | ||
incremental = true | ||
lto = false |
Oops, something went wrong.