Skip to content

Commit

Permalink
Fix libgmp detection (#7488)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leonid Bobrov authored and nerzhul committed Jun 26, 2018
1 parent e4e95e4 commit ae8ae6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Modules/FindGMP.cmake
Expand Up @@ -3,7 +3,7 @@ mark_as_advanced(GMP_LIBRARY GMP_INCLUDE_DIR)
set(USE_SYSTEM_GMP FALSE)

if(ENABLE_SYSTEM_GMP)
find_library(GMP_LIBRARY NAMES libgmp.so)
find_library(GMP_LIBRARY NAMES gmp)
find_path(GMP_INCLUDE_DIR NAMES gmp.h)

if(GMP_LIBRARY AND GMP_INCLUDE_DIR)
Expand Down

0 comments on commit ae8ae6c

Please sign in to comment.