Closed binxing closed 1 year ago
This PR removes .cargo/config.toml to let cargo use the default target. This aligns with #9 to build acond in rust container with default rust target.
.cargo/config.toml
acond
Some more optimization options are turned on in the 'release' profile, including
opt-level = "s"
strip = true
codegen-units = 1
A .gitignore is also added to ignore the build output (target/) directory.
.gitignore
target/
This PR removes
.cargo/config.toml
to let cargo use the default target. This aligns with #9 to buildacond
in rust container with default rust target.Some more optimization options are turned on in the 'release' profile, including
opt-level = "s"
to optimize for size.strip = true
to strip symbol info from the final executable.codegen-units = 1
to maximize optimization.A
.gitignore
is also added to ignore the build output (target/
) directory.