1
0
mirror of https://github.com/sharkdp/fd synced 2024-07-01 07:14:22 +00:00

Abort on panic in release

This should help both runtime performance and side of the executable.

And I can't think of a reason why we would need unwinding on panic in
release builds.
This commit is contained in:
Thayne McCombs 2024-06-07 16:53:41 -06:00
parent 29936f0fba
commit f1a4a29264

View File

@ -86,6 +86,7 @@ test-case = "3.3"
lto = true
strip = true
codegen-units = 1
panic = "abort"
[features]
use-jemalloc = ["jemallocator"]