Browse Source

refs #4871 link against stdc++ instead of c

git-svn-id: file:///svn/toku/tokudb@46046 c7de825b-a66e-492c-adef-691d508d4ae1
pull/73/head
Leif Walsh 13 years ago
committed by Yoni Fogel
parent
commit
389599b1a4
  1. 2
      cmake_modules/TokuSetupCompiler.cmake

2
cmake_modules/TokuSetupCompiler.cmake

@ -206,7 +206,7 @@ endfunction(add_space_separated_property)
function(set_targets_need_intel_libs)
if (CMAKE_CXX_COMPILER_ID STREQUAL Intel)
foreach(tgt ${ARGN})
target_link_libraries(${tgt} LINK_PUBLIC -Bstatic irc -Bdynamic c)
target_link_libraries(${tgt} LINK_PUBLIC -Bstatic irc -Bdynamic stdc++)
endforeach(tgt)
endif ()
endfunction(set_targets_need_intel_libs)

Loading…
Cancel
Save