-
大小: 37.19MB文件类型: .gz金币: 1下载: 0 次发布日期: 2023-07-11
- 语言: 其他
- 标签: cmake-binary
资源简介
一般开放源代码软件都会有两个版本发布:Source Distribution 和 Binary Distribution,前者是源代码版,你需要自己编译成可执行软件。后者是已经编译好的可执行版,直接可以拿来用的。上传的是在cmake安装包的网站中选择binary distribution下的linux x86_64下的cmake-3.15.3-Linux-x86_64.tar.gz压缩包
代码片段和文件信息
#include
void* start_routine(void* args)
{
return args;
}
int main(void)
{
/* This is a compile and link test no code to actually run things. */
pthread_t thread;
pthread_create(&thread 0 start_routine 0);
pthread_join(thread 0);
return 0;
}
- 上一篇:Plant Simulation案例合计
- 下一篇:D06 CNG调试软件
评论
共有 条评论