[cfe-users] Looking for specific revision

2020-03-06 Thread Mahmood Naderan via cfe-users
Hi The following command svn co http://llvm.org/svn/llvm-project/llvm/branches/release_39/ /home/mahmood/source/llvm-3.9 -q -r 301135 returns svn: E175002: REPORT of '/svn/llvm-project/!svn/vcc/default': Could not read response body: connection was closed by server (http://llvm.org) I want to

Re: [cfe-users] Looking for specific revision

2020-03-06 Thread Mahmood Naderan via cfe-users
36 > Author: Xin Tong > Date: Sun Apr 23 17:36:25 2017 + > > Correct grammar. NFC > > llvm-svn: 301135 > > HTH > > Jan > > On Mar 6, 2020, at 4:00 AM, Mahmood Naderan via cfe-users < > cfe-users@lists.llvm.org> wrote: > > Hi > The

Re: [cfe-users] Looking for specific revision

2020-03-07 Thread Mahmood Naderan via cfe-users
73132726736 >> Author: Xin Tong >> Date: Sun Apr 23 17:36:25 2017 +0000 >> >> Correct grammar. NFC >> >> llvm-svn: 301135 >> >> HTH >> >> Jan >> >> On Mar 6, 2020, at 4:00 AM, Mahmood Naderan via cfe-users < >

[cfe-users] Problem building llvm from source

2020-03-07 Thread Mahmood Naderan via cfe-users
Hi, I want to use a specific revision number and for the cmake command below cmake ~/codestitcher/source/llvm-3.9 -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=host -DLLVM_ENABLE_CXX1Y=ON -DLLVM_BUILD_TESTS=OFF -DLLVM_BINUTILS_INCDIR=~/codestitcher/source/binutils-2.30/include -DLLVM_BUILD_TO

Re: [cfe-users] Problem building llvm from source

2020-03-07 Thread Mahmood Naderan via cfe-users
>What make command did you run? make -j2 Regards, Mahmood ___ cfe-users mailing list cfe-users@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-users

Re: [cfe-users] Problem building llvm from source

2020-03-07 Thread Mahmood Naderan via cfe-users
I am looking for a way to stop LLVM of SVN from version checking. I haven't found that. I hope there is a way to that. Even using -DLLVM_APPEND_VC_REV=OFF doesn't fix the problem. Regards, Mahmood On Sat, Mar 7, 2020 at 11:13 PM Mahmood Naderan wrote: > >What make command did you run? > > m

[cfe-users] Binary modifications

2020-07-24 Thread Mahmood Naderan via cfe-users
Hi, I would like to know if it is possible to modify a binary file with some custom assembly instructions. Specifically, I want to add some jump instruction at the end of some basic blocks that I want to reorder. Is there any starting point for that? Regards, Mahmood __