79773469

Date: 2025-09-24 08:43:03
Score: 1
Natty:
Report link

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++ ...).

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: S.Demon