How to checkout latest stable Boost (not development or bleeding edge)?

☆樱花仙子☆ 提交于 2019-12-12 13:17:18

问题


According to Boost Subversion Repository, I can checkout Boost's bleeding edge development with svn co http://svn.boost.org/svn/boost/trunk boost-trunk.

I'm interested in checking out the latest stable version because I need bcp (bcp is not part of the Boost downloads). I believe the latest version of Boost is Version 1.55.0, but there's no "XXX_1_55" in trunk, tags or branches in the repository (where XXX would presumably be something, like "release").

How do I checkout the latest stable Boost?

Thanks in advance.


回答1:


It seems that the releases are found under tags/releases not trunk. You could do svn list http://svn.boost.org/svn/boost/tags/release to verify the release you are interested is there.

This is described at Development and Release Practices, where it indicates the URLs for final releases are in the form http://svn.boost.org/svn/boost/tags/releases/xxx, where xxx is a revision like 1_54_0.

The checkout command would be similar to:

$ svn co http://svn.boost.org/svn/boost/tags/release/Boost_1_55_0


来源:https://stackoverflow.com/questions/17777694/how-to-checkout-latest-stable-boost-not-development-or-bleeding-edge

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!