/usr/bin/ld: /tmp/cclef6gT.o: in function `main': server.c:(.text+0x0): multiple definition of `main'; /tmp/ccJYVVRT.o:mutepthread.c:(.text+0x58): first defined here /usr/bin/ld: /tmp/ccJYVVRT.o: in function `main': mutepthread.c:(.text+0xb3): undefined reference to `pthread_create' /usr/bin/ld: mutepthread.c:(.text+0xe7): undefined reference to `pthread_join' collect2: error: ld returned 1 exit status
时间: 2024-01-27 08:05:02 浏览: 175
grpc-python-demos
这个错误提示表明编译器在链接时发生了错误,具体包括:
1. `multiple definition of 'main'`:main函数被定义了多次。可能是因为你在server.c和mutepthread.c两个文件中都定义了main函数,导致编译器无法确定使用哪个函数。
2. `undefined reference to 'pthread_create'`:编译器无法找到pthread_create函数的定义。可能是因为你没有链接pthread库。
针对这两个问题,你可以尝试以下解决方法:
1. 确认在你的代码中是否真的需要两个main函数,如果不需要,可以将其中一个文件中的main函数改名为其他名称。
2. 添加链接pthread库的选项。在编译时添加 `-pthread` 选项,如:`gcc -pthread server.c mutepthread.c -o output_file`。
修改后重新编译即可。
阅读全文