• 大小: 35.46MB
    文件类型: .gz
    金币: 1
    下载: 0 次
    发布日期: 2023-07-01
  • 语言: 其他
  • 标签: cmake  linux  

资源简介

CMake官网提供的下载链接不稳定,经常出现下载很慢或下载失败的情况,cmake-3.14.0-Linux-x86_64是linux最新的cmake版本。

资源截图

代码片段和文件信息

#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;
}

评论

共有 条评论