3

我刚开始使用 Netbeans 7.3.1,我在编译我的项目时遇到了一些麻烦。在终端中,我使用以下代码成功编译:

gcc -Wall one.c two.c three.c four.c -o gateway -lpthread

当我在 Netbeans 中编译时,我收到类似“未定义对 'pthread_create' 的引用”之类的错误。所以我需要添加' -lpthread '选项,但我不知道在哪里..

任何帮助将非常感激!!

编辑:找到它:我在下面发布了解决方案!

亲切的问候,

4

1 回答 1

9

找到了!

在 Netbeans 中向 GCC 添加库依赖项:

File->Project Properties->Build->Linker->Libraries->add Library/add standard Library.

例如,对于 -lpthread 或 -pthread 选项:

add standard Library --> Posix Threads
于 2013-08-12T11:33:45.537 回答