标签: linux gcc makefile pthreads
我有以下makefile:
all: file prog: file.c gcc file.c -o file -pthread
然而,在击中" make"在终端我得到"错误,未写入引用pthread_create"。
但是当我输入终端" gcc file.c -o file -pthread"有用。
gcc file.c -o file -pthread
有谁知道我做错了什么?