源代码合并
我有 gcc-4.3.1 的补丁。但我需要升级到 gcc-4.5.0,并保留补丁中添加的功能。请解释一下我该怎么做?
I have a patch to gcc-4.3.1. But i need upgrade to gcc-4.5.0 with keeping functionality added with the patch. Please explain me how i can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的 svn 中有 gcc 源代码的本地副本吗?在这种情况下,请将本地 gcc-4.3.1 副本中的更改合并到本地 gcc-4.5.0 副本中。 svn 书中有一个关于供应商分支的部分,处理这个问题: http://svnbook.red-bean.com/en/1.5/svn.advanced.vendorbr.html
另一种选择是使用 svn diff 来创建应用于签出的 gcc-4.5 的补丁文件.0 来源。
Do you have a local copy of the gcc sources in your svn? In this case, merge your changes from your local gcc-4.3.1 copy into your local gcc-4.5.0 copy. There's a section in the svn book about vendor branches, that deals with this problem: http://svnbook.red-bean.com/en/1.5/svn.advanced.vendorbr.html
Another option is to use svn diff to create patch files which you apply to your checked out gcc-4.5.0 sources.