如何编译线程程序?

时间:2017-04-01 23:43:02

标签: compiler-errors compilation pthreads

我正在尝试使用线程编译一个hello world程序。但我一直得到同样的错误,我尝试了不同的方式,但没有运气。

gcc hello.c -o hello -lpthread      // command line compilation
./hello.c                            // execution
-bash: ./hello.c: Permission denied // error message

1 个答案:

答案 0 :(得分:1)

-o选项将可执行文件重命名为您接下来写的任何内容(在本例中为'hello')。你需要执行./hello而不是./hello.c。