GCC
GCC Compiler Errors And How To Fix Them
Article by:Geoffrey Hunter
Date Published: | |
Last Modified: |
undefined reference to `pthread_create'
This error usually occurs when trying to compile C++ code which uses threads on Linux. This error can usually be fixed by adding the option -pthread
to the call to g++
, e.g.:
|
|
Authors

This work is licensed under a Creative Commons Attribution 4.0 International License .