You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[alias]
|
|
|
|
xtask = "run --package xtask --"
|
|
|
|
|
|
|
|
# this should migrate to cargo per-target profiles when it is implemented
|
|
|
|
|
|
|
|
[target.bpfel-unknown-none]
|
|
|
|
rustflags = [
|
|
|
|
"-C", "panic=abort",
|
|
|
|
"-C", "lto=yes",
|
|
|
|
"-C", "embed-bitcode=yes",
|
|
|
|
"-C", "debuginfo=2",
|
|
|
|
"-C", "opt-level=3",
|
|
|
|
"-C", "codegen-units=1",
|
|
|
|
"-C", "debug-assertions=no",
|
|
|
|
"-C", "overflow-checks=no",
|
|
|
|
"-C", "incremental=no",
|
|
|
|
]
|
|
|
|
|
|
|
|
[target.bpfeb-unknown-none]
|
|
|
|
rustflags = [
|
|
|
|
"-C", "panic=abort",
|
|
|
|
"-C", "lto=yes",
|
|
|
|
"-C", "embed-bitcode=yes",
|
|
|
|
"-C", "debuginfo=2",
|
|
|
|
"-C", "opt-level=3",
|
|
|
|
"-C", "codegen-units=1",
|
|
|
|
"-C", "debug-assertions=no",
|
|
|
|
"-C", "overflow-checks=no",
|
|
|
|
"-C", "incremental=no",
|
|
|
|
]
|