我正在尝试将带有atomic_int的结构用于金属计算着色器,但是,它说我需要导入#include“ stdatomic.h”-但是每次尝试时,它都找不到该文件。
#include "stdatomic.h" // 'stdatomic.h' file not found
我正在尝试为macOS Catalina构建我的应用程序
struct Fitness {
atomic_int weight; // Declaration of 'atomic_int' must be imported from module 'Darwin.C.stdatomic' before it is required
...others...
};
任何想法出了什么问题,还是我不能做我想做的事?