diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-12-03 20:18:04 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-12-08 01:28:20 +0000 |
| commit | 35b81e40cc16d3d07abf4486a60e6e0fcd80abdc (patch) | |
| tree | e9ac71d2af905a957dfef97e97b2e1f4c878cee4 | |
| parent | e755e8c55d07f6fd4f66dcd2fecdd06fe96c45bb (diff) | |
| download | gentoo-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.build | 2 | ||||
| -rw-r--r-- | fuzz/atom/vercmp/meson.build | 2 |
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: [ |
