ipkn / crow

Crow is very fast and easy to use C++ micro web framework (inspired by Python Flask)
BSD 3-Clause "New" or "Revised" License
7.47k stars 888 forks source link

weak document #286

Open arashackdev opened 6 years ago

arashackdev commented 6 years ago

I tried to run a test on this but kept getting errors like below

arashackdev commented 6 years ago

/usr/bin/ld: /tmp/cckM146m.o: undefined reference to symbol 'pthread_sigmask@@GLIBC_2.2.5' //lib/x86_64-linux-gnu/libpthread.so.0: error adding symbols: DSO missing from command line

arashackdev commented 6 years ago

is anybody making a proper document for this repo?

netromdk commented 6 years ago

It means you have to link it against pthread. And it should be after all object files on the linker command btw.

zhongchengyong commented 6 years ago

@jimist Add:find_package(Threads) and link against pthread