无法使用多线程在 raspberry Pi 上编译我的 C 程序
Can't compile my C program on my raspberry Pi using multithreading
我无法 link 对我的程序进行 pthread。我试了 gcc Tracker.c -lpthread -lwiringPi
,只得到 undefined reference to pthread_creat
。我尝试使用 -lpthread
和 -pthread
。我在网上也找不到解决方法。
undefined reference to pthread_creat
创建 POSIX-Thread 的函数调用了 pthread_create()
。
我无法 link 对我的程序进行 pthread。我试了 gcc Tracker.c -lpthread -lwiringPi
,只得到 undefined reference to pthread_creat
。我尝试使用 -lpthread
和 -pthread
。我在网上也找不到解决方法。
undefined reference to pthread_creat
创建 POSIX-Thread 的函数调用了 pthread_create()
。