-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
threads Makefile #38
Comments
seems to be linux specific (works correctly on Mac) |
Please let me know which linux OS and version is being used? I am able to compile it on my centos. However, I will change the -lpthread to -pthread and will just test it on centos. Please assign it to me. |
For another data point, I can run
|
I'm not sure if this is already fixed or not, but I was using an ubuntu distro. |
The position of
-lpthread
matters, so it is better to use-pthread
instead in the makefiles.Currently
make server-tcp
does not work because of the order. You could put the flag at the end, but it's better to just use-pthread
.The text was updated successfully, but these errors were encountered: