Oliver Schneider
2015-Feb-23 08:56 UTC
[LLVMdev] Is there a way to build a particular tagged version with the Git clone?
Hi, I was wondering whether there was any way of building a tagged LLVM when using the Git clone? With # git tag -l there don't seem to be any tags set. And there are only a handful of branches. However, synchronizing the whole SVN repo is also impossible because some chunks appear to be simply to big for the server side to handle. So I can't create make my own Git conversion of the SVN repo. Any ideas? Thanks, Oliver
Anton Korobeynikov
2015-Feb-23 09:50 UTC
[LLVMdev] Is there a way to build a particular tagged version with the Git clone?
There are release branches in git mirror. On Mon, Feb 23, 2015 at 11:56 AM, Oliver Schneider <llvm at assarbad.net> wrote:> Hi, > > I was wondering whether there was any way of building a tagged LLVM when > using the Git clone? > > With > > # git tag -l > > there don't seem to be any tags set. And there are only a handful of > branches. However, synchronizing the whole SVN repo is also impossible > because some chunks appear to be simply to big for the server side to > handle. So I can't create make my own Git conversion of the SVN repo. > > Any ideas? > > Thanks, > > Oliver > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev-- With best regards, Anton Korobeynikov Faculty of Mathematics and Mechanics, Saint Petersburg State University
Oliver Schneider
2015-Feb-23 09:59 UTC
[LLVMdev] Is there a way to build a particular tagged version with the Git clone?
On 2015-02-23 09:50, Anton Korobeynikov wrote:> There are release branches in git mirror.Thanks Anton. Yes, I am aware of those. The problem, however, is that regularly those will be broken. I.e. if you try to build them they contain errors that prevent a successful build. Some of the projects have a stable branch, but not all do. So it's basically hard to tell what can be and should be built. Tags on released versions would be really helpful there. Thanks, Oliver