我正在尝试构建OSX Firebreath插件。如果将目标操作系统设置为10.8,它的构建就很好,但是如果我尝试将其移回10.6,则会收到以下错误消息:
/Users/dwiedeback/Github/plugin-dev/
firebreath/src/libs/log4cplus/include/
log4cplus/internal/internal.h:142:8:
error: thread-local storage is unsupported for the current target
不知道为什么10.6不支持线程本地存储。有谁遇到过Firebreath吗?
最佳答案
如果您未在log4cplus'LOG4CPLUS_HAVE_TLS_SUPPORT
中定义defines.hxx
,则可以避免该问题。然后,log4cplus源将不会尝试使用__thread
关键字,而是将使用POSIX线程本地存储功能。
但是,所有选项中最好的方法是调试并找出为什么ConfigureChecks.cmake
中的TLS检查给出误报的原因。
关于c++ - Firebreath无法使用Xcode 5.0.2进行编译,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21744086/