Skip to content

Commit

Permalink
Explicitly link libiconv and libunwind
Browse files Browse the repository at this point in the history
  • Loading branch information
sgolemon committed Aug 18, 2012
1 parent 7b3e14f commit 29ce7fa
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CMake/HPHPFindLibs.cmake
Expand Up @@ -351,6 +351,7 @@ macro(hphp_link target)
endif()

target_link_libraries(${target} ${Boost_LIBRARIES})
target_link_libraries(${target} ${LIBUNWIND_LIBRARY})
target_link_libraries(${target} ${MYSQL_CLIENT_LIBS})
target_link_libraries(${target} ${PCRE_LIBRARY})
target_link_libraries(${target} ${ICU_LIBRARIES} ${ICU_I18N_LIBRARIES})
Expand All @@ -361,6 +362,11 @@ if (LIBINOTIFY_LIBRARY)
target_link_libraries(${target} ${LIBINOTIFY_LIBRARY})
endif()

if (LIBICONV_LIBRARY)
target_link_libraries(${target} ${LIBICONV_LIBRARY})
endif()


if (LINUX)
target_link_libraries(${target} ${CAP_LIB})
endif()
Expand Down

0 comments on commit 29ce7fa

Please sign in to comment.