xcode – c线程本地存储clang-503.0.40(Mac OSX)

在我以这种方式声明一个变量之后:
#include <thread>
   namespace thread_space
    {
    thread_local int s;
    } //etc.

我试图使用’g -std = c 0x -pthread [sourcefile]’来编译我的代码.我收到以下错误

example.C:6:8: error: thread-local storage is unsupported for the current target
static thread_local int s;
       ^
1 error generated.

如果我尝试在Linux上编译相同的代码,GCC 4.8.1将使用相同的标志,我将获得一个运行可执行文件.我在运行OSX 10.9.3的MacBook Pro上使用clang-503.0.40(Xcode 5.1.1附带的).有人可以解释一下我在做错什么吗?
谢谢!!

解决方法

尝试clang -stdlib = libc -std = c 11. OS X的过时的libstdc不支持TLS.

编辑

好的,这适用于正常的clang版本,但不适用于Xcode.

我对Apple’s clang (503.0.38)normal released one做了一个差异,发现了以下区别:

.Case("cxx_thread_local",-                 LangOpts.CPlusPlus11 && PP.getTargetInfo().isTLSSupported() &&
-                 !PP.getTargetInfo().getTriple().isOSDarwin())
+                 LangOpts.CPlusPlus11 && PP.getTargetInfo().isTLSSupported())

所以我认为这是一个苹果的ang子版本的错误(或者它们在目的地保留在这里 – 但仍然很奇怪,因为-v说基于3.4).

相关文章

背景 前端时间产品经理决定使用百度统计,使得 工程B 中原统计sdk-友盟统计,需要被去除。之前尝试去除...
结论: alloc负责分配内存和创建对象对应的isa指针; init只是返回alloc生成的对象。 所以alloc后,多次...
更新 如果UI愿意把启动图切割成n份,按一定约束在launchscreen.storyboard中进行排版,启动图效果会更好...
最近在看一本书《Effective OC 2.0》,今天看到有个tip是OC适中循环各自优劣性,作者最终推荐此块循环。...
// // ViewController.m // paintCodeTestOC //gif // Created by LongMa on 2019/7/25. // #import &a...
背景介绍 一般情况下,出于省电、权限、合理性等因素考虑,给人的感觉是很多奇怪的需求安卓可以实现,但...