由于pthread库不是Linux系统默认的库,连接时需要使用库libpthread.a,所以在使用pthread_create创建线程时,在编译中要加 -lpthread 参数 gcc -o pthread -lpthread pthread.c
因为我们要用到动态库文件paho-mqtt3c.so,使用在编译的时候要加上参数 -lpaho-mqtt3c gcc mqtt_clinet.c -lpaho-mqtt3c