Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve the way to find Enzyme. #48

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing 'REQUIRED' argument to find_library.
  • Loading branch information
nkoukpaizan committed Jan 28, 2025
commit dd6de43f0e22e22f9329e5a2db7fce52c0d3c94c
3 changes: 2 additions & 1 deletion cmake/FindEnzyme.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ find_library(ENZYME_LLVM_PLUGIN_LIBRARY
ENV LD_LIBRARY_PATH
ENV DYLD_LIBRARY_PATH
PATH_SUFFIXES
lib64 lib)
lib64 lib
REQUIRED)
message(STATUS "Enzyme LLVM plugin library: ${ENZYME_LLVM_PLUGIN_LIBRARY}")

find_program(GRIDKIT_LLVM_LINK llvm-link
Expand Down