undefined reference to symbol '_ZN5boost6system15system_categoryEv' error

前端 未结 1 357
伪装坚强ぢ
伪装坚强ぢ 2021-02-06 08:39

I\'m new to c++ rest sdk Casablanca and using it in Codelite ide.
Operating System : Arch Linux
gcc ver

相关标签:
1条回答
  • 2021-02-06 09:35
    /usr/lib/libboost_system.so.1.60.0: error adding symbols: DSO missing from command line
    

    This DSO error means that libboost_system is missing from the command line. You should also add:

    -lboost_system
    

    to your command line just like -lcpprest

    0 讨论(0)
提交回复
热议问题