summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-12-03 20:18:04 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-12-08 01:28:20 +0000
commit35b81e40cc16d3d07abf4486a60e6e0fcd80abdc (patch)
treee9ac71d2af905a957dfef97e97b2e1f4c878cee4
parente755e8c55d07f6fd4f66dcd2fecdd06fe96c45bb (diff)
downloadgentoo-utils-35b81e40cc16d3d07abf4486a60e6e0fcd80abdc.tar.gz
give fuzzer library targets different names
If these targets have the same names, only the last processed target gets put into rust-project.json.
-rw-r--r--fuzz/atom/parser/meson.build2
-rw-r--r--fuzz/atom/vercmp/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/fuzz/atom/parser/meson.build b/fuzz/atom/parser/meson.build
index 025c6fb..9272a27 100644
--- a/fuzz/atom/parser/meson.build
+++ b/fuzz/atom/parser/meson.build
@@ -12,7 +12,7 @@ corpus = custom_target(
)
fuzz_rs = static_library(
- 'fuzzer',
+ 'parser_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [
diff --git a/fuzz/atom/vercmp/meson.build b/fuzz/atom/vercmp/meson.build
index 025c6fb..4f451d9 100644
--- a/fuzz/atom/vercmp/meson.build
+++ b/fuzz/atom/vercmp/meson.build
@@ -12,7 +12,7 @@ corpus = custom_target(
)
fuzz_rs = static_library(
- 'fuzzer',
+ 'vercmp_fuzzer',
'fuzz.rs',
rust_abi: 'c',
rust_args: [