MinGW 在标准合规性或功能方面与 GCC 完全相同吗?
作为一个移植,我认为很难让它完全跟上 GCC 的步伐。是吗?或者在标准合规性或功能方面有什么差异吗?
As a port, I'd think it'd be hard to keep it completely up to speed with GCC. Is it, or are there any differences with regards to standards compliance or features?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在一个版本到另一个版本的基础上,是的,尽可能地。换句话说,Windows 上的 4.4.1 应该与 Linux 上的 4.4.1 一样符合 c++ 标准(例如)。但据我所知,对此没有任何保证。
OTOH,这两种实现方式会以相同的方式工作吗?几乎肯定不是——我们最近在这里发布了几个差异的例子。但是您可以使用这些实现在 Windows 和 Linux 之间进行移植吗?是的,我经常这样做。
On a version to version, basis, yes, as far as is possible. In other words 4.4.1 on Windows should be as c++ Standard compliant as 4.4.1 on Linux (for example). But there are, as far as I know, no guarantees of this.
OTOH, will the two implementations work in the same way? Almost certainly not - we've had a couple of examples of differences posted here recently. But can you use the implementations to port between Windows and Linux - yes, I do this routinely.