0

I've facing this problem when trying to use boost::thread:

unresolved external symbols:

public: __thiscall boost::thread::~thread(void)
public: __thiscall boost::thread::thread(void)

Does anyone have any idea?

Grace Note
  • 3,205
  • 4
  • 35
  • 55
csa
  • 71
  • 1
  • 2

1 Answers1

2

You haven't told your linker to link with the boost threads library. Without info on compiler and platform, nobody can help you further.

Roddy
  • 66,617
  • 42
  • 165
  • 277