From 90040ee1fc25d7f421abec19a467ea02318221b6 Mon Sep 17 00:00:00 2001 From: arvidn Date: Wed, 14 Feb 2024 12:17:26 +0100 Subject: [PATCH] speed up linking of fuzz targets by using thin LTO --- Cargo.toml | 2 +- tools/Cargo.toml | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ba270b52..f8ab55d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ counters = [] pre-eval = [] [profile.release] -lto = true +lto = "thin" [dependencies] lazy_static = "1.4.0" diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 21f783d2..e1797dcb 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -9,9 +9,6 @@ homepage = "https://github.com/Chia-Network/clvm_rs/tools/" repository = "https://github.com/Chia-Network/clvm_rs/tools/" readme = "README.md" -[profile.release] -lto = true - [dependencies] hex-literal = "=0.4.1" hex = "=0.4.3"