我尝试创建一个使用线程对数组进行排序的程序,但是我无法通过线程支持进行编译。
错误:
sortieren.c:(.text+0xd7): undefined reference to `ptread_create'
我使用make文件进行简单编译,但是在命令行上我无法使用它。
基本代码:
#include <pthread.h>
int main(int argc, char **argv) {
pthread_t threads[2];
// code snipped
int ret = ptread_create(&threads[0], NULL, threadOne(), NULL);
printf("ret: %d\n", ret);
// code snipped
}
制作档案:
sortieren : sortieren.o
gcc sortieren.o
sortieren.o : sortieren.c
gcc -pthread -c sortieren.c
使用make sortieren
会产生此输出
gcc -pthread -c sortieren.c
gcc sortieren.o
sortieren.o: In function `main':
sortieren.c:(.text+0xd7): undefined reference to `ptread_create'
collect2: ld returned 1 exit status
make: *** [sortieren] Fehler 1
当然我试着谷歌,但我找到的每一个“解决方案”都不适合我。我在make文件中到处尝试了-pthread
或-lpthread
。为了确保我的代码中没有出错,我还尝试了a public sample:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello World! It's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
long t;
for(t=0;t<NUM_THREADS;t++){
printf("In main: creating thread %ld\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc){
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
pthread_exit(NULL);
}
那里的错误是一样的。
系统:Ubuntu 11.04 64bit,GCC-Version 4.5.2
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/x86_64-linux-gnu/gcc/x86_64-linux-gnu/4.5.2/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.5.2-8ubuntu4' --with-bugurl=file:///usr/share/doc/gcc-4.5/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.5 --enable-shared --enable-multiarch --with-multiarch-defaults=x86_64-linux-gnu --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib/x86_64-linux-gnu --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.5 --libdir=/usr/lib/x86_64-linux-gnu --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-plugin --enable-gold --enable-ld=default --with-plugin-ld=ld.gold --enable-objc-gc --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.5.2 (Ubuntu/Linaro 4.5.2-8ubuntu4)
更新
使用@Banthar提到的内容也不起作用。
$ make sortieren
gcc -c sortieren.c
gcc -lpthread sortieren.o
sortieren.o: In function `main':
sortieren.c:(.text+0xd7): undefined reference to `ptread_create'
collect2: ld returned 1 exit status
make: *** [sortieren] Fehler 1
答案 0 :(得分:4)
sortieren : sortieren.o
gcc sortieren.o
sortieren.o : sortieren.c
gcc -pthread -c sortieren.c
应该是:
sortieren : sortieren.o
gcc -lpthread sortieren.o
sortieren.o : sortieren.c
gcc -c sortieren.c
答案 1 :(得分:0)
您的拼写错误pthread_create()
,我认为您正在撰写ptread_create()
。
至少你的错误是这样说的:undefined reference to ptread_create