[PATCH] D27870: [libFuzzer] Diff 25 - Fix test with shared libraries on Windows.
Zachary Turner via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Dec 19 09:46:18 PST 2016
zturner added a reviewer: beanz.
zturner added a comment.
beanz, do you know anything about how this works? On Windows when you build a shared library we get `.lib` files in the lib/ directory and `.dll` files in the bin/ directory, and when linking against a DLL CMake automatically knows to look in the lib/ directory for the `.lib` file but still put the resulting exe into the bin directory.
Is there some magic that we need to know to make this happen? I'd like for everything in libFuzzer to work the same way as it does in clang and lldb.
Repository:
rL LLVM
https://reviews.llvm.org/D27870
More information about the llvm-commits
mailing list