From c0cb77749228dce6becd325568994094bd964eed Mon Sep 17 00:00:00 2001 From: Connor Shugg Date: Mon, 7 Oct 2024 15:53:52 -0400 Subject: [PATCH] softened the language of my note on the MSVC linker error --- src/project.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/project.rs b/src/project.rs index 19cc8df..80b3eb0 100644 --- a/src/project.rs +++ b/src/project.rs @@ -248,8 +248,8 @@ impl FuzzProject { // NOTE: On Windows, if the user's fuzzing targets have a dependency // on a local Rust DLL (with `crate-type` containing `["cdylib"]), - // the MSVC Linker will be unable to resolve the `main` symbol when - // linking the DLL. It will fail with this error: + // the MSVC Linker may be unable to resolve the `main` symbol when + // linking the DLL. It may fail with this error: // // LINK : error LNK2001: unresolved external symbol main // C:\....\depedency.dll : fatal error LNK1120: 1 unresolved externals