gcc 4.4.5 中未定义 _GLIBCXX_ATOMIC_BUILTINS
我有一些正在移植的代码,并且我已经找到了丢失的错误 宏 _GLIBCXX_ATOMIC_BUILTINS
以后版本的 gcc 没有定义这个吗?
解决这个问题的正确方法是什么?
I have some code that I'm porting and I've tracked down the error to missing
the macro _GLIBCXX_ATOMIC_BUILTINS
Do later versions of gcc not define this?
What's the proper way to get around this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在该版本中,您还需要检查某些特定数据类型的原子宏,因此您可以执行以下操作:
或
宏是:
In that version you will also want to check the atomic macros for some particular data type, so you could do:
or
The macros are: