use LD linker flag:
target_link_libraries(${BIN_NAME} -Wl,-Bstatic tcmalloc_minimal -Wl,Bdynamic)
You have to put -Wl,Bdynamic in the end, otherwise it will try to link everything statically (e.g. libc, libstdc++ ...).
-Wl,Bdynamic