search for: diffs60

Displaying 2 results from an estimated 2 matches for "diffs60".

Did you mean: diffs
2018 Mar 17
1
Local svn strategy for future LLVM release updates
...0> //Make project changes to trunk/myproj60. //When next llvm release is available (say llvm 7.0) svn diff file://`pwd`/repos/llvm/trunk/llvm_60<file:///%60pwd%60/repos/llvm/trunk/llvm_60> file://`pwd`/repos/llvm/trunk/myproj<file:///%60pwd%60/repos/llvm/trunk/myproj> > /tmp/diffs60.patch // Identify and fixup any conflicts, repeat above until no conflicts // Repeat same steps as above to make a trunk/llvm_70 and trunk/myproj70 svn co file://`pwd`/repos/llvm/trunk/llvm_70<file:///%60pwd%60/repos/llvm/trunk/llvm_70> wc70 cd wc70 svn patch /tmp/diffs60.patch svn commit...
2018 Mar 16
0
local svn strategy for LLVM release updates
...0 file://`pwd`/repos/llvm/trunk/llvm_60 svn copy trunk/llvm_60 file://`pwd`/repos/llvm/trunk/myproj60 //Make project changes to trunk/myproj60. //When next llvm release is available (say llvm 7.0) svn diff file://`pwd`/repos/llvm/trunk/llvm_60 file://`pwd`/repos/llvm/trunk/myproj > /tmp/diffs60.patch // Identify and fixup any conflicts, repeat above until no conflicts // Repeat same steps as above to make a trunk/llvm_70 and trunk/myproj70 svn co file://`pwd`/repos/llvm/trunk/llvm_70 wc70 cd wc70 svn patch /tmp/diffs60.patch svn commit // Start using trunk/myproj70 as project base