SVN名称冲突和多个版本
我有一个在 Windows (VS2010) 和 Linux (Eclipse) 下开发的 C++ 项目。源代码的不可移植部分被隔离在一个不可移植文件 (NonPortable.cpp) 中。我想使用SVN来管理源。一切正常,我可以从 Windows 和 Linux 签入/签出/提交,但我不知道如何处理该 NonPortable.cpp 文件。有没有一种方法可以保留这两个版本并告诉 SVN 使用适当的版本?
我一直在 Eclipse 中使用 Subversive SVN,在 VS 中使用 VisualSVN。
谢谢。
I have a C++ project developed under both Windows (VS2010) and Linux (Eclipse). The non-portable portion of the source is isolated in one non-portable file (NonPortable.cpp). I would like to use SVN to manage the source. Everything works, I can check-in/out/commit from both Windows and Linux, but I don't know how to handle that NonPortable.cpp file. Is there a way to keep both versions and tell the SVN to work with the appropriate one?
I've been using Subversive SVN in Eclipse and VisualSVN in VS.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
NonPortable.cpp 文件应该包含所有操作系统的所有编译器的所有代码,并且所有内容都应该使用预定义的宏进行组织。每个编译器都定义了一组宏来处理此类情况。对于 VS2010,请查看此页面和宏,例如 _WIN32 和 _MSC_VER。
NonPortable.cpp file should have all the code of all the compilers for all the OS'es, and everything should be organized with predefined macros. Each compiler defines a set of macros to deal with such situations. For VS2010 check out this page and macros such as _WIN32 and _MSC_VER.