I want to build a plugin for an application and I'm using cmake as build system.
Here is the code:
INCLUDE_DIRECTORIES(${PLUGIN_BINARY_DIR} ${POGRAM_INCLUDE_DIR} ${PLUGIN_SOURCE_DIR}/src
${MYSQL_INCLUDE_DIR})
SET(PLUGIN_SRCS list of cpp files)
ADD_LIBRARY(libmyplug MODULE ${PLUGIN_SRCS})
SET_TARGET_PROPERTIES(libmyplug PROPERTIES OUTPUT_NAME "myplug")
INSTALL(TARGETS libmyplug LIBRARY DESTINATION lib)
Compilation is fine but when it links the shared module, it fails with the following error:
/usr/lib/gcc/x86_64-pc-linux-gnu/4.4.5/../../../../x86_64-pc-linux-gnu/bin/ld:
cannot find -l-lstdc++
collect2: ld returned 1 exit status
Why does it fail linking to standard c++ library? Then library name seems to be wrong but it automactly resolved by cmake.